diff options
Diffstat (limited to 'src/thread/pthread_attr_init.c')
-rw-r--r-- | src/thread/pthread_attr_init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_attr_init.c b/src/thread/pthread_attr_init.c index 463a8d20..79082098 100644 --- a/src/thread/pthread_attr_init.c +++ b/src/thread/pthread_attr_init.c @@ -9,3 +9,11 @@ int pthread_attr_init(pthread_attr_t *a) __release_ptc(); return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |