diff options
Diffstat (limited to 'slowcgi.c')
-rw-r--r-- | slowcgi.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -39,6 +39,12 @@ #include <syslog.h> #include <unistd.h> +#ifdef strlcpy +#define HAVE_STRLCPY +#else +size_t strlcpy(char *, const char *, size_t); +#endif + #ifndef __packed #define __packed __attribute__((packed)) #endif |