chiark / gitweb /
[PATCH] add getgrnam and getpwnam to klibc_fixups files.
[elogind.git] / klibc_fixups.c
index a5d5d5948a1ea876855136fa317b33f468640abc..c12c90fd1cc7469d87ed419493d015066bf3869a 100644 (file)
@@ -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