summaryrefslogtreecommitdiffstats
path: root/waftools/fragments/pthreads.c
diff options
context:
space:
mode:
Diffstat (limited to 'waftools/fragments/pthreads.c')
-rw-r--r--waftools/fragments/pthreads.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/waftools/fragments/pthreads.c b/waftools/fragments/pthreads.c
deleted file mode 100644
index 84f3d087fb..0000000000
--- a/waftools/fragments/pthreads.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <pthread.h>
-static void *func(void *arg) { return arg; }
-int main(void) {
- pthread_t tid;
- return pthread_create (&tid, 0, func, 0) != 0;
-}