summaryrefslogtreecommitdiff
path: root/libchill/concatstr.c
diff options
context:
space:
mode:
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-29 19:34:51 +0000
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>2000-05-29 19:34:51 +0000
commitae141adb11f65bc5b56133b4540fa007aeb14a91 (patch)
tree8b5c373b1382ec8c9c78b6d04d49e50526ac28df /libchill/concatstr.c
parent317ab997bf9870b2d90fb92db665a799d9e03120 (diff)
downloadgcc-ae141adb11f65bc5b56133b4540fa007aeb14a91.tar.gz
* concatstr.c, exh.c: Include stdlib.h and string.h.
* delaycase.c, eqstr.c, memmove.c, printbuffer.c, printevent.c, sendbuffer.c, waitbuffer.c: Include string.h. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34255 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libchill/concatstr.c')
-rw-r--r--libchill/concatstr.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libchill/concatstr.c b/libchill/concatstr.c
index 7cefc3c8c6a..866d3307ef5 100644
--- a/libchill/concatstr.c
+++ b/libchill/concatstr.c
@@ -1,5 +1,5 @@
/* Implement string-related runtime actions for CHILL.
- Copyright (C) 1992,1993 Free Software Foundation, Inc.
+ Copyright (C) 1992,1993,2000 Free Software Foundation, Inc.
Author: Bill Cox
This file is part of GNU CC.
@@ -26,6 +26,9 @@ Boston, MA 02111-1307, USA. */
This exception does not however invalidate any other reasons why
the executable file might be covered by the GNU General Public License. */
+#include <stdlib.h>
+#include <string.h>
+
#define MIN(a, b) ((a) < (b) ? (a) : (b))
extern void cause_exception (char *exname, char *file, int lineno);