diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/lib.c | 2 | ||||
-rw-r--r-- | lib/lib.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ #include "toys.h" -#ifndef __UCLIBC__ +#if !defined(__UCLIBC__) && !defined(__KLIBC__) // uClibc has this, and if we define our own it conflicts. @@ -31,7 +31,7 @@ struct dirtree { void get_optflags(void); // functions.c -#ifndef __UCLIBC__ +#if !defined(__UCLIBC__) && !defined(__KLIBC__) void strlcpy(char *dest, char *src, size_t size); #endif |