diff options
Diffstat (limited to 'linux')
-rw-r--r-- | linux/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/util.h b/linux/util.h index cce1453..50d98ff 100644 --- a/linux/util.h +++ b/linux/util.h @@ -20,8 +20,12 @@ #define FPARSELN_UNESCREST 0x08 #define FPARSELN_UNESCALL 0x0f +#if !__has_builtin(strlcpy) size_t strlcpy(char *, const char *, size_t); +#endif +#if !__has_builtin(strlcat) size_t strlcat(char *, const char *, size_t); +#endif char *fgetln(FILE *, size_t *); char *fparseln(FILE *, size_t *, size_t *, const char [3], int); |