From: Roland McGrath Date: Wed, 20 Mar 1996 01:07:36 +0000 (+0000) Subject: [HAVE_STRING_H]: Include string.h. X-Git-Tag: emacs-19.34~1016 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=029c99a369e8dfedc3055f0af3ded863c37fc1e6;p=emacs.git [HAVE_STRING_H]: Include string.h. [HAVE_STDLIB_H]: Include stdlib.h. --- diff --git a/src/alloca.c b/src/alloca.c index 7061cec2d31..12c1122981c 100644 --- a/src/alloca.c +++ b/src/alloca.c @@ -25,6 +25,13 @@ #include #endif +#ifdef HAVE_STRING_H +#include +#endif +#ifdef HAVE_STDLIB_H +#include +#endif + #ifdef emacs #include "blockinput.h" #endif