]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/alloc.c
Generate <>& symbolically. I'm avoiding .../dist/... directories for now.
[bsdgames-darwin.git] / hack / alloc.c
index d94bf8b903b8bd3ebb4e60064507535fa9a8fcae..68713b210a5cc22707a3351e64b2455f5244316e 100644 (file)
@@ -1,4 +1,13 @@
-/* alloc.c - version 1.0.2 */
+/*     $NetBSD: alloc.c,v 1.4 1997/10/19 16:56:47 christos Exp $       */
+#include <sys/cdefs.h>
+#ifndef lint
+__RCSID("$NetBSD: alloc.c,v 1.4 1997/10/19 16:56:47 christos Exp $");
+#endif                         /* not lint */
+
+#include <stdlib.h>
+#include "hack.h"
+#include "extern.h"
+
 #ifdef LINT
 
 /*
        "ftell defined (in <stdio.h>) but never used"
    from lint
 */
-#include <stdio.h>
 long *
-alloc(n) unsigned n; {
-long dummy = ftell(stderr);
-       if(n) dummy = 0;        /* make sure arg is used */
-       return(&dummy);
+alloc(n)
+       unsigned        n;
+{
+       long            dummy = ftell(stderr);
+       if (n)
+               dummy = 0;      /* make sure arg is used */
+       return (&dummy);
 }
 
 #else
 
-extern char *malloc();
-extern char *realloc();
-
 long *
 alloc(lth)
-register unsigned lth;
+       unsigned lth;
 {
-       register char *ptr;
+       char  *ptr;
 
-       if(!(ptr = malloc(lth)))
+       if (!(ptr = malloc(lth)))
                panic("Cannot get %d bytes", lth);
-       return((long *) ptr);
+       return ((long *) ptr);
 }
 
 long *
-enlarge(ptr,lth)
-register char *ptr;
-register unsigned lth;
+enlarge(ptr, lth)
+       char  *ptr;
+       unsigned lth;
 {
-       register char *nptr;
+       char  *nptr;
 
-       if(!(nptr = realloc(ptr,lth)))
+       if (!(nptr = realloc(ptr, lth)))
                panic("Cannot reallocate %d bytes", lth);
-       return((long *) nptr);
+       return ((long *) nptr);
 }
 
-#endif LINT
+#endif /* LINT */