diff options
Diffstat (limited to 'Build/source/utils/t1utils/t1utils-src/config.h.in')
-rw-r--r-- | Build/source/utils/t1utils/t1utils-src/config.h.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Build/source/utils/t1utils/t1utils-src/config.h.in b/Build/source/utils/t1utils/t1utils-src/config.h.in index 76389dfbfe6..718cae85698 100644 --- a/Build/source/utils/t1utils/t1utils-src/config.h.in +++ b/Build/source/utils/t1utils/t1utils-src/config.h.in @@ -9,6 +9,9 @@ /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H +/* Define to 1 if you have the `memmem' function. */ +#undef HAVE_MEMMEM + /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H @@ -89,7 +92,13 @@ extern "C" { /* Prototype strerror if we don't have it. */ #if !HAVE_STRERROR -char *strerror(int errno); +char* strerror(int errno); +#endif + +/* Prototype memmem if we don't have it. */ +#if !HAVE_MEMMEM +void* memmem(const void* haystack, size_t haystack_len, + const void* needle, size_t needle_len); #endif #ifdef __cplusplus |