diff options
Diffstat (limited to 'src/thread/pthread_sigmask.c')
-rw-r--r-- | src/thread/pthread_sigmask.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_sigmask.c b/src/thread/pthread_sigmask.c index f188782a..8d5b83c5 100644 --- a/src/thread/pthread_sigmask.c +++ b/src/thread/pthread_sigmask.c @@ -17,3 +17,11 @@ int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict ol } return ret; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |