]> git.eshelyaron.com Git - emacs.git/commitdiff
(yow): Cast result of malloc and realloc.
authorRichard M. Stallman <rms@gnu.org>
Sat, 15 Feb 2003 10:52:52 +0000 (10:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 15 Feb 2003 10:52:52 +0000 (10:52 +0000)
(malloc, realloc): Declarations deleted.

lib-src/yow.c

index fa638b06466194eee967c04ac24a46fae62681b8..02bcc6642eb59a1695adbabd1f93fcd6f724855a 100644 (file)
     &res;})
 #endif
 
-#ifndef HAVE_STDLIB_H
-char *malloc __P ((size_t size))), *realloc __P ((POINTER_TYPE *ptr, size_t size));
-#endif
-
 void yow();
 void setup_yow();
 
@@ -158,7 +154,7 @@ yow (fp)
   }
 
   bufsize = BUFSIZE;
-  buf = malloc(bufsize);
+  buf = (char *) malloc(bufsize);
   if (buf == (char *)0) {
     fprintf(stderr, "yow: virtual memory exhausted\n");
     exit (3);
@@ -171,7 +167,7 @@ yow (fp)
     if (i == bufsize-1) {
       /* Yow! Is this quotation too long yet? */
       bufsize *= 2;
-      buf = realloc(buf, bufsize);
+      buf = (char *) realloc(buf, bufsize);
       if (buf == (char *)0) {
        fprintf(stderr, "yow: virtual memory exhausted\n");
        exit (3);