summaryrefslogtreecommitdiff
path: root/distrib/special
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2016-01-16 21:59:31 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2016-01-16 21:59:31 +0000
commit3d3e9d6b831e5a78417ccc43676e2d9ac9341549 (patch)
treea7a3de25a20880d193c2c4d6862a41bd4004dbf6 /distrib/special
parent0ad1ce58f7341c8b7e1241647b8b3c8b9e809534 (diff)
No need to abstract malloc(), so replace new_file_media() with
malloc(). Removes last use of last used function in media.c, so unhook that from the Makefile and remove forward declarations from media.h. No functional change.
Diffstat (limited to 'distrib/special')
-rw-r--r--distrib/special/pdisk/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/special/pdisk/Makefile b/distrib/special/pdisk/Makefile
index 88118cad048..b001e235ecc 100644
--- a/distrib/special/pdisk/Makefile
+++ b/distrib/special/pdisk/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.6 2016/01/16 14:49:28 krw Exp $
+# $Id: Makefile,v 1.7 2016/01/16 21:59:30 krw Exp $
.if ${MACHINE} == "macppc"
PROG= pdisk
@@ -7,7 +7,7 @@ DPADD= ${LIBUTIL}
CFLAGS+=-Wall
SRCS= convert.c dump.c \
- file_media.c io.c media.c partition_map.c \
+ io.c partition_map.c \
pdisk.c validate.c
.else