signal: sigaction struct should not be a typedef

The sigaction struct should not be a typedef, but the sigset_t struct
should be a typedef.
This commit is contained in:
Dan Robertson
2018-03-15 01:07:44 +00:00
parent 6d110ef0cb
commit f1d802dc1e
6 changed files with 6 additions and 13 deletions
-10
View File
@@ -1,10 +0,0 @@
#ifndef _BITS_SIGNAL_H
#define _BITS_SIGNAL_H
typedef struct sigaction {
void (*sa_handler)(uintptr_t);
sigset_t sa_mask;
uintptr_t sa_flags;
};
#endif