diff options
Diffstat (limited to 'src/thread/pthread_attr_setguardsize.c')
-rw-r--r-- | src/thread/pthread_attr_setguardsize.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_attr_setguardsize.c b/src/thread/pthread_attr_setguardsize.c index 1c5c60ac..579aad75 100644 --- a/src/thread/pthread_attr_setguardsize.c +++ b/src/thread/pthread_attr_setguardsize.c @@ -6,3 +6,11 @@ int pthread_attr_setguardsize(pthread_attr_t *a, size_t size) a->_a_guardsize = size; return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |