From b5eeb313e25c83f5ff39f16e6ce91e3348d705c9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 30 Mar 2012 10:10:54 -0400 Subject: BUGFIX: compat string handling prototypes are defined --- include/duser.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/duser.h b/include/duser.h index fa4b8b2..894d8a8 100644 --- a/include/duser.h +++ b/include/duser.h @@ -64,6 +64,10 @@ typedef struct record_t int pad3; } record_t; +#ifdef HAVE_COMPAT +char* strcasestr(const char *s, const char *find); +char* strchrnul (const char *s, int c_in); +#endif void usage(void); char *__basename(char *path); int strval(const char* str); -- cgit