user: implement mlibc as the libc, finally.
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#ifndef MLIBC_BITS_SIGSET_T_H
|
||||
#define MLIBC_BITS_SIGSET_T_H
|
||||
|
||||
#include <abi-bits/signal.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef __MLIBC_ABI_ONLY
|
||||
|
||||
/* functions to manage sigset_t */
|
||||
int sigemptyset(sigset_t *__sigset);
|
||||
int sigfillset(sigset_t *__sigset);
|
||||
int sigaddset(sigset_t *__sigset, int __sig);
|
||||
int sigdelset(sigset_t *__sigset, int __sig);
|
||||
int sigismember(const sigset_t *__sigset, int __sig);
|
||||
|
||||
#endif /* !__MLIBC_ABI_ONLY */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /*MLIBC_BITS_SIGSET_T_H */
|
||||
Reference in New Issue
Block a user