stagit/compat.h
2016-01-06 17:03:42 +00:00

9 lines
207 B
C

#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