diff options
Diffstat (limited to 'tests/join.c')
-rw-r--r-- | tests/join.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/join.c b/tests/join.c new file mode 100644 index 0000000..a353eae --- /dev/null +++ b/tests/join.c @@ -0,0 +1,12 @@ +/* + * Test for pthread_join(). + * + * Depends on API functions: pthread_create(). + */ + +#include <pthread.h> + +int +main(int argc, char * argv[]) +{ +} |