diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-02-18 21:07:56 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-02-18 21:07:56 -0800 |
commit | c1992328089420c817c070c27172939393cadc9c (patch) | |
tree | e2741fe95e3e5ce7d7756f9e6ebd621cf0b75e2a | |
parent | 0695e582731ab3d05706de4f9b0a12deefc14f01 (diff) | |
download | syslinux-elf-c1992328089420c817c070c27172939393cadc9c.tar.gz syslinux-elf-c1992328089420c817c070c27172939393cadc9c.tar.xz syslinux-elf-c1992328089420c817c070c27172939393cadc9c.zip |
getcwd.c: need <string.h>
getcwd.c needs <string.h>
-rw-r--r-- | com32/lib/getcwd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/com32/lib/getcwd.c b/com32/lib/getcwd.c index 95008bb2..bb0a30d1 100644 --- a/com32/lib/getcwd.c +++ b/com32/lib/getcwd.c @@ -9,6 +9,7 @@ #include <dirent.h> #include <stdio.h> #include <errno.h> +#include <string.h> char *getcwd(char *buf, size_t size) { |