mirror of
git://git.codemadness.org/stagit
synced 2025-03-09 09:09:12 -04:00
9 lines
207 B
C
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
|