aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/platform.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h
index 07b1faa9f..e22dbdb4a 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -266,6 +266,7 @@ typedef unsigned smalluint;
266#if defined __GLIBC__ \ 266#if defined __GLIBC__ \
267 || defined __UCLIBC__ \ 267 || defined __UCLIBC__ \
268 || defined __dietlibc__ \ 268 || defined __dietlibc__ \
269 || defined __BIONIC__ \
269 || defined _NEWLIB_VERSION 270 || defined _NEWLIB_VERSION
270# include <features.h> 271# include <features.h>
271#endif 272#endif
@@ -492,7 +493,8 @@ extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC
492#endif 493#endif
493 494
494#ifndef HAVE_GETLINE 495#ifndef HAVE_GETLINE
495#include <stdio.h> /* for FILE */ 496# include <stdio.h> /* for FILE */
497# include <sys/types.h> /* size_t */
496extern ssize_t getline(char **lineptr, size_t *n, FILE *stream) FAST_FUNC; 498extern ssize_t getline(char **lineptr, size_t *n, FILE *stream) FAST_FUNC;
497#endif 499#endif
498 500