add compat.h
1 files changed, 6 insertions(+), 0 deletions(-) | |||
---|---|---|---|
A | compat.h | +6 | -0 |
1@@ -0,0 +1,6 @@
2+#ifdef COMPAT
3+#undef strlcat
4+size_t strlcat(char *, const char *, size_t);
5+#undef strlcpy
6+size_t strlcpy(char *, const char *, size_t);
7+#endif