* remove reference to non-existant fat.c.
authordownsj <downsj@openbsd.org>
Thu, 6 Feb 1997 22:57:03 +0000 (22:57 +0000)
committerdownsj <downsj@openbsd.org>
Thu, 6 Feb 1997 22:57:03 +0000 (22:57 +0000)
* make cread.c work with libz again.

sys/lib/libsa/Makefile
sys/lib/libsa/cread.c

index 26e1a0f..0c796ec 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: Makefile,v 1.13 1997/02/06 14:22:32 mickey Exp $
+#      $OpenBSD: Makefile,v 1.14 1997/02/06 22:57:03 downsj Exp $
 #      $NetBSD: Makefile,v 1.13 1996/10/02 16:19:51 ws Exp $
 
 LIB=   sa
@@ -38,7 +38,7 @@ SRCS+=        close.c closeall.c dev.c disklabel.c dkcksum.c cons.c ioctl.c \
        lseek.c open.c nullfs.c read.c stat.c fstat.c write.c
 
 # boot filesystems
-SRCS+= ufs.c cd9660.c fat.c
+SRCS+= ufs.c cd9660.c
 
 .if defined(SA_ZLIB)
 SRCS+= cread.c
index b5fdbc9..93e9204 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cread.c,v 1.3 1997/02/06 06:28:52 mickey Exp $        */
+/*     $OpenBSD: cread.c,v 1.4 1997/02/06 22:57:03 downsj Exp $        */
 /*     $NetBSD: cread.c,v 1.2 1997/02/04 18:38:20 thorpej Exp $        */
 
 /*
@@ -47,7 +47,7 @@
  */
 
 #include "stand.h"
-#include "zlib.h"
+#include "../libz/zlib.h"
 
 #define EOF (-1) /* needed by compression code */
 
@@ -91,12 +91,11 @@ unsigned size;
   return(alloc(items * size));
 }
 
-void  zfree (opaque, ptr, size)
+void  zcfree (opaque, ptr)
 void *opaque;
 void *ptr;
-size_t size;
 {
-  free(ptr, size);
+  free(ptr, 0); /* XXX works only with modified allocator */
 }
 
 static int get_byte(s)