]> gcc.gnu.org Git - gcc.git/commitdiff
concatstr.c, exh.c: Include stdlib.h and string.h.
authorZack Weinberg <zack@wolery.cumb.org>
Mon, 29 May 2000 19:34:51 +0000 (19:34 +0000)
committerZack Weinberg <zack@gcc.gnu.org>
Mon, 29 May 2000 19:34:51 +0000 (19:34 +0000)
* 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.

From-SVN: r34255

libchill/ChangeLog
libchill/concatstr.c
libchill/delaycase.c
libchill/eqstr.c
libchill/exh.c
libchill/ltstr.c
libchill/memmove.c
libchill/printbuffer.c
libchill/printevent.c
libchill/sendbuffer.c
libchill/waitbuffer.c

index 7fefa5b663f6943894a5c6bd98e589594b16495b..7094f7c991fede2a1ac2793c048355fd74c65766 100644 (file)
@@ -1,3 +1,9 @@
+2000-05-29  Zack Weinberg  <zack@wolery.cumb.org>
+
+       * 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.
+
 Mon Apr  3 01:20:50 2000  George France <france@crl.dec.com>
 
        * basicio.c (PATH_MAX): Always provide a definition.
index 7cefc3c8c6a0f3462e6bdeca455cd1229d07625c..866d3307ef570b03a946ce8e713fda290c8a1a36 100644 (file)
@@ -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);
index f66f10c8c40925537dd2901503a44e76a1c8d7e7..3c2a3c7777adfeb16d35583e9eb44336d6cf5a5c 100644 (file)
@@ -26,6 +26,7 @@ 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 <string.h>
 #include "rtltypes.h"
 #include "rts.h"
 
index 37fc6a58b245039ee15c2034cd332f27780b0e57..9261572a1f006fd35b36c9d1c701e2b15dc9bd15 100644 (file)
@@ -26,6 +26,8 @@ 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 <string.h>
+
 extern void cause_exception (char *exname, char *file, int lineno);
 
 /*
index 1c80776076fbb7ff4d303b549f44423d12325168..8845d4336d562a45b2617fd1c367601e9c6e4ab0 100644 (file)
@@ -30,6 +30,8 @@ Boston, MA 02111-1307, USA.  */
 #define __CHILL_LIB__
 
 #include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
 #include <setjmp.h>
 #include "rtltypes.h"
 
index 4f89284e5cdada13e9107c48a83ba2d156335a10..7ddcfda5c3c93cda72715e25b99aad9f4b2acf01 100644 (file)
@@ -26,6 +26,8 @@ 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 <string.h>
+
 #define MIN(a, b)  ((a) < (b) ? (a) : (b))
 
 /*
index c5ec992bd8476639a6644b0664d9aa6c2dc17e49..a64175b0635990ce2a321691b94356011fd3c90c 100644 (file)
@@ -26,6 +26,8 @@ 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 <string.h>
+
 #define MIN(a, b)  ((a) < (b) ? (a) : (b))
 
 
@@ -52,7 +54,7 @@ void *
 memmove (s1, s2, n)
      void *s1;
      const void *s2;
-     int n;
+     unsigned int n;
 {
   char *sc1 = s1;
   const char *sc2 = s2;
index 39e8527d3f8cc22414739be0f79cf78446b13811..a46cb5d5ef0061988c0baa2d3c19fe045d56109b 100644 (file)
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA.  */
    the executable file might be covered by the GNU General Public License.  */
 
 #include <stdio.h>
+#include <string.h>
 #include "rtltypes.h"
 #include "rts.h"
 
index 03b8448ac53ef6509a6600f18ad5df9ef3b0fb83..88c4bc0acc734685f02f3ddccac5254262255de9 100644 (file)
@@ -27,6 +27,7 @@ Boston, MA 02111-1307, USA.  */
    the executable file might be covered by the GNU General Public License.  */
 
 #include <stdio.h>
+#include <string.h>
 #include "rtltypes.h"
 #include "rts.h"
 
index 7cfe5b0deb968f86105f7e2e300f9bbc2cd9567f..7ca229c81bea2bff9ce99a5db68d04865cb4c16c 100644 (file)
@@ -26,6 +26,7 @@ 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 <string.h>
 #include "rtltypes.h"
 #include "rts.h"
 
index cc84295fedd8a617ad8b04b808330c6f02aed1eb..939c4fca7a1cbe102b9f7189ecbf6d43f0a39ce4 100644 (file)
@@ -26,6 +26,7 @@ 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 <string.h>
 #include "rtltypes.h"
 #include "rts.h"
 
This page took 0.059896 seconds and 5 git commands to generate.