diff options
Diffstat (limited to 'src/thread/pthread_attr_setdetachstate.c')
-rw-r--r-- | src/thread/pthread_attr_setdetachstate.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_attr_setdetachstate.c b/src/thread/pthread_attr_setdetachstate.c index 1b712783..30c5627d 100644 --- a/src/thread/pthread_attr_setdetachstate.c +++ b/src/thread/pthread_attr_setdetachstate.c @@ -6,3 +6,11 @@ int pthread_attr_setdetachstate(pthread_attr_t *a, int state) a->_a_detach = state; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |