Browse Source

libc: silence warning

about implicit declaration of memset in system()

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 13 years ago
parent
commit
f3a07d80c8
1 changed files with 1 additions and 0 deletions
  1. 1 0
      libc/stdlib/system.c

+ 1 - 0
libc/stdlib/system.c

@@ -5,6 +5,7 @@
  */
 
 #include <stdio.h>
+#include <string.h>
 #include <stddef.h>
 #include <signal.h>
 #include <unistd.h>