changeset 14844:885968b5998e

[HAVE_STRING_H]: Include string.h. [HAVE_STDLIB_H]: Include stdlib.h.
author Roland McGrath <roland@gnu.org>
date Wed, 20 Mar 1996 01:07:36 +0000
parents 055c7356865b
children fce6bf9ce9b0
files src/alloca.c
diffstat 1 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloca.c	Tue Mar 19 23:43:50 1996 +0000
+++ b/src/alloca.c	Wed Mar 20 01:07:36 1996 +0000
@@ -25,6 +25,13 @@
 #include <config.h>
 #endif
 
+#ifdef HAVE_STRING_H
+#include <string.h>
+#endif
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
 #ifdef emacs
 #include "blockinput.h"
 #endif