diff options
author | greg@kroah.com <greg@kroah.com> | 2003-11-23 20:44:41 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:13:02 -0700 |
commit | 2023350eece60db60d30e387cfb644df09b9e8b6 (patch) | |
tree | c0920b414666a512c594a388392972cde437d096 /klibc_fixups.c | |
parent | 04a81cac0aab2ab6a54ddc661dd57be7d5b1595a (diff) |
[PATCH] add getgrnam and getpwnam to klibc_fixups files.
Hopefully the klibc_fixups code will not be needed eventually.
Diffstat (limited to 'klibc_fixups.c')
-rw-r--r-- | klibc_fixups.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/klibc_fixups.c b/klibc_fixups.c index a5d5d5948a..c12c90fd1c 100644 --- a/klibc_fixups.c +++ b/klibc_fixups.c @@ -4,6 +4,8 @@ #include <stdlib.h> #include <string.h> #include <ctype.h> +#include <sys/types.h> +#include "klibc_fixups.h" char *strerror(int errnum) { @@ -29,5 +31,5 @@ int strcasecmp(const char *s1, const char *s2) free(n2); return retval; } - + #endif |