diff options
Diffstat (limited to 'src/thread/pthread_spin_destroy.c')
-rw-r--r-- | src/thread/pthread_spin_destroy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/thread/pthread_spin_destroy.c b/src/thread/pthread_spin_destroy.c index e65a820c..19a90b89 100644 --- a/src/thread/pthread_spin_destroy.c +++ b/src/thread/pthread_spin_destroy.c @@ -4,3 +4,11 @@ int pthread_spin_destroy(pthread_spinlock_t *s) { return 0; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |