]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/alloc.c
avoid duplicating symbols in libterminfo.
[bsdgames-darwin.git] / hack / alloc.c
index 53dc51eb359670d7bef330d216ec725a3eca03d0..8f2405e383e112a5d178bbd7739a070e413dfb2c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: alloc.c,v 1.5 2003/04/02 18:36:33 jsm Exp $    */
+/*     $NetBSD: alloc.c,v 1.9 2011/08/06 20:18:26 dholland Exp $       */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: alloc.c,v 1.5 2003/04/02 18:36:33 jsm Exp $");
+__RCSID("$NetBSD: alloc.c,v 1.9 2011/08/06 20:18:26 dholland Exp $");
 #endif                         /* not lint */
 
 #include <stdlib.h>
 #include "hack.h"
 #include "extern.h"
 
-#ifdef LINT
-
-/*
-   a ridiculous definition, suppressing
-       "possible pointer alignment problem" for (long *) malloc()
-       "enlarg defined but never used"
-       "ftell defined (in <stdio.h>) but never used"
-   from lint
-*/
-long *
-alloc(n)
-       unsigned        n;
+void *
+alloc(size_t len)
 {
-       long            dummy = ftell(stderr);
-       if (n)
-               dummy = 0;      /* make sure arg is used */
-       return (&dummy);
-}
-
-#else
+       void *ptr;
 
-long *
-alloc(lth)
-       unsigned lth;
-{
-       char  *ptr;
-
-       if (!(ptr = malloc(lth)))
-               panic("Cannot get %d bytes", lth);
-       return ((long *) ptr);
+       ptr = malloc(len);
+       if (ptr == NULL)
+               panic("Cannot get %zu bytes", len);
+       return ptr;
 }
 
-long *
-enlarge(ptr, lth)
-       char  *ptr;
-       unsigned lth;
+#if 0 /* unused */
+static long *
+enlarge(char *ptr, unsigned lth)
 {
        char  *nptr;
 
@@ -113,5 +91,4 @@ enlarge(ptr, lth)
                panic("Cannot reallocate %d bytes", lth);
        return ((long *) nptr);
 }
-
-#endif /* LINT */
+#endif