added whiteout
[unix-history] / usr / src / lib / libc / stdlib / calloc.c
index 6404344..f67bf7a 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1990 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1990, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
  *
  * %sccs.include.redist.c%
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)calloc.c   5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)calloc.c   8.1 (Berkeley) %G%";
 #endif /* LIBC_SCCS and not lint */
 
 #include <stdlib.h>
 #endif /* LIBC_SCCS and not lint */
 
 #include <stdlib.h>
@@ -24,10 +24,3 @@ calloc(num, size)
                bzero(p, size);
        return(p);
 }
                bzero(p, size);
        return(p);
 }
-
-void
-cfree(p)
-       void *p;
-{
-       (void)free(p);
-}