summaryrefslogtreecommitdiff
path: root/compat.h
blob: f619c16e1f54a20f999711e52f3394254b133c49 (plain)
1
2
3
4
5
6
7
8
#ifdef COMPAT
#undef strlcat
size_t strlcat(char *, const char *, size_t);
#undef strlcpy
size_t strlcpy(char *, const char *, size_t);
#undef reallocarray
void *reallocarray(void *, size_t, size_t);
#endif