diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-06-19 17:30:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-06-19 17:30:07 +0000 |
commit | be5023a84ddcf830148448456f40c0569c4d60d3 (patch) | |
tree | d1f7b0142fcdd82a21529ccca482de3267da54b6 | |
parent | b610615be9aedfac07d1e01f12575707fa3a227c (diff) | |
download | busybox-be5023a84ddcf830148448456f40c0569c4d60d3.tar.gz |
Update internal.h to conditionally include asm/string.h
-Erik
-rw-r--r-- | internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal.h b/internal.h index fce32c415..697ce4778 100644 --- a/internal.h +++ b/internal.h @@ -33,7 +33,9 @@ #include <sys/stat.h> #include <sys/param.h> #include <mntent.h> +#if ! defined(__GLIBC__) #include <asm/string.h> +#endif /* Some useful definitions */ |