Browse Source

libpthread/linuxthreads: add missing string.h include in condvar.c

Quelches a compiler warning by that memset was implicitly declared.
Marcus Haehnel 1 month ago
parent
commit
cd950aac51
1 changed files with 1 additions and 0 deletions
  1. 1 0
      libpthread/linuxthreads/condvar.c

+ 1 - 0
libpthread/linuxthreads/condvar.c

@@ -18,6 +18,7 @@
 #include <errno.h>
 #include <sched.h>
 #include <stddef.h>
+#include <string.h>
 #include <sys/time.h>
 #include "pthread.h"
 #include "internals.h"