getcwd.c: need <string.h>
authorH. Peter Anvin <hpa@zytor.com>
Thu, 19 Feb 2009 05:07:56 +0000 (21:07 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Thu, 19 Feb 2009 05:07:56 +0000 (21:07 -0800)
getcwd.c needs <string.h>

com32/lib/getcwd.c

index 95008bb..bb0a30d 100644 (file)
@@ -9,6 +9,7 @@
 #include <dirent.h>
 #include <stdio.h>
 #include <errno.h>
+#include <string.h>
 
 char *getcwd(char *buf, size_t size)
 {