diff options
-rw-r--r-- | src/sysdeps/trypthread.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sysdeps/trypthread.c b/src/sysdeps/trypthread.c index 8e2e459..37cb339 100644 --- a/src/sysdeps/trypthread.c +++ b/src/sysdeps/trypthread.c @@ -3,8 +3,9 @@ #include <time.h> #include <pthread.h> -void *pstart (void *) +void *pstart (void *arg) { + (void)arg ; return 0 ; } |