We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219beb7 commit 7710453Copy full SHA for 7710453
libc/include/llvm-libc-types/sigset_t.h
@@ -13,8 +13,8 @@
13
14
// This definition can be adjusted/specialized for different targets and
15
// platforms as necessary. This definition works for Linux on most targets.
16
-struct sigset_t {
+typedef struct {
17
unsigned long __signals[__NSIGSET_WORDS];
18
-};
+} sigset_t;
19
20
#endif // LLVM_LIBC_TYPES_SIGSET_T_H
libc/include/llvm-libc-types/struct_sigaction.h
@@ -17,7 +17,7 @@ struct sigaction {
void (*sa_handler)(int);
void (*sa_sigaction)(int, siginfo_t *, void *);
};
- struct sigset_t sa_mask;
+ sigset_t sa_mask;
21
int sa_flags;
22
#ifdef __linux__
23
// This field is present on linux for most targets.
0 commit comments