add compat.h

This commit is contained in:
Hiltjo Posthuma 2015-12-26 13:01:41 +01:00
parent e4e03b3bf9
commit 597e3cdbed

6
compat.h Normal file
View file

@ -0,0 +1,6 @@
#ifdef COMPAT
#undef strlcat
size_t strlcat(char *, const char *, size_t);
#undef strlcpy
size_t strlcpy(char *, const char *, size_t);
#endif