]> git.eshelyaron.com Git - emacs.git/commitdiff
(xmalloc, xrealloc): Make externally visible, for use
authorGerd Moellmann <gerd@gnu.org>
Fri, 14 Jul 2000 17:59:42 +0000 (17:59 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 14 Jul 2000 17:59:42 +0000 (17:59 +0000)
by alloca.o.

lib-src/etags.c

index 8f7949c5595be3acbd0855729a08c255674b8bdb..3cbdfca1b563f1fc992272dc640bc265a188727d 100644 (file)
@@ -308,8 +308,8 @@ static char *absolute_dirname P_((char *, char *));
 static bool filename_is_absolute P_((char *f));
 static void canonicalize_filename P_((char *));
 static void grow_linebuffer P_((linebuffer *, int));
-static long *xmalloc P_((unsigned int));
-static long *xrealloc P_((char *, unsigned int));
+long *xmalloc P_((unsigned int));
+long *xrealloc P_((char *, unsigned int));
 
 \f
 char searchar = '/';           /* use /.../ searches */
@@ -5508,7 +5508,7 @@ grow_linebuffer (lbp, toksize)
 }
 
 /* Like malloc but get fatal error if memory is exhausted.  */
-static long *
+long *
 xmalloc (size)
      unsigned int size;
 {
@@ -5518,7 +5518,7 @@ xmalloc (size)
   return result;
 }
 
-static long *
+long *
 xrealloc (ptr, size)
      char *ptr;
      unsigned int size;