diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libdisk/Makefile | 3 | ||||
-rw-r--r-- | lib/libdisk/libdisk.h | 1 | ||||
-rw-r--r-- | lib/libstand/stand.h | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/lib/libdisk/Makefile b/lib/libdisk/Makefile index 3711085..0916c46 100644 --- a/lib/libdisk/Makefile +++ b/lib/libdisk/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ LIB= disk -SRCS= blocks.c disklabel.c dkcksum.c chunk.c disk.c change.c \ +SRCS= blocks.c disklabel.c chunk.c disk.c change.c \ create_chunk.c rules.c write_disk.c INCS= libdisk.h @@ -10,7 +10,6 @@ CFLAGS+= -Wall CFLAGS+= -DPC98 .endif CLEANFILES+= tmp.c tst01 tst01.o -VPATH= ${.CURDIR}/../../sbin/disklabel NOPROFILE= yes NOSHARED= yes NOPIC= yes diff --git a/lib/libdisk/libdisk.h b/lib/libdisk/libdisk.h index 34646dd..0a33717 100644 --- a/lib/libdisk/libdisk.h +++ b/lib/libdisk/libdisk.h @@ -265,7 +265,6 @@ int Add_Chunk(struct disk *, long, u_long, const char *, chunk_e, int, u_long); void * read_block(int, daddr_t); void write_block(int fd, daddr_t block, void *foo); struct disklabel * read_disklabel(int, daddr_t); -u_short dkcksum(struct disklabel *); struct chunk * Find_Mother_Chunk(struct chunk *, u_long, u_long, chunk_e); struct disk * Int_Open_Disk(const char *name, u_long size); void Fixup_Names(struct disk *); diff --git a/lib/libstand/stand.h b/lib/libstand/stand.h index e48565a..b3d7c41 100644 --- a/lib/libstand/stand.h +++ b/lib/libstand/stand.h @@ -212,7 +212,6 @@ extern void free_region(void *start, void *end); /* disklabel support (undocumented, may be junk) */ struct disklabel; extern char *getdisklabel(const char *, struct disklabel *); -extern int dkcksum(struct disklabel *); extern int printf(const char *fmt, ...); extern void vprintf(const char *fmt, _BSD_VA_LIST_); |