diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/platform.h b/include/platform.h index cbe85f469..eafc3fcfe 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -350,6 +350,7 @@ typedef unsigned smalluint; | |||
350 | #define HAVE_STRSIGNAL 1 | 350 | #define HAVE_STRSIGNAL 1 |
351 | #define HAVE_STRVERSCMP 1 | 351 | #define HAVE_STRVERSCMP 1 |
352 | #define HAVE_VASPRINTF 1 | 352 | #define HAVE_VASPRINTF 1 |
353 | #define HAVE_GETLINE 1 | ||
353 | #define HAVE_XTABS 1 | 354 | #define HAVE_XTABS 1 |
354 | #define HAVE_MNTENT_H 1 | 355 | #define HAVE_MNTENT_H 1 |
355 | #define HAVE_NET_ETHERNET_H 1 | 356 | #define HAVE_NET_ETHERNET_H 1 |
@@ -470,4 +471,8 @@ extern char *strsep(char **stringp, const char *delim) FAST_FUNC; | |||
470 | extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC; | 471 | extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC; |
471 | #endif | 472 | #endif |
472 | 473 | ||
474 | #ifndef HAVE_GETLINE | ||
475 | extern ssize_t getline(char **lineptr, size_t *n, FILE *stream) FAST_FUNC; | ||
476 | #endif | ||
477 | |||
473 | #endif | 478 | #endif |