about summary refs log tree commit diff stats
path: root/linux/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'linux/util.h')
-rw-r--r--linux/util.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/linux/util.h b/linux/util.h
index 50d98ff..cce1453 100644
--- a/linux/util.h
+++ b/linux/util.h
@@ -20,12 +20,8 @@
 #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);