diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-03-21 22:11:43 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-03-21 22:11:43 +0000 |
commit | d651b7b1678c28b1fe024d844639ddff5a19d089 (patch) | |
tree | 5693b91afb231b16fecf4153f0eb169ed979b20b /sbin/disklabel | |
parent | cdf35d9e412f26b3e1912040688a5ef04ee06cbe (diff) |
dosdp should be extern
Diffstat (limited to 'sbin/disklabel')
-rw-r--r-- | sbin/disklabel/editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index 48889bbb30e..0bd6450dabc 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.55 1999/03/21 19:31:10 millert Exp $ */ +/* $OpenBSD: editor.c,v 1.56 1999/03/21 22:11:42 millert Exp $ */ /* * Copyright (c) 1997-1999 Todd C. Miller <Todd.Miller@courtesan.com> @@ -28,7 +28,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: editor.c,v 1.55 1999/03/21 19:31:10 millert Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.56 1999/03/21 22:11:42 millert Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -127,7 +127,7 @@ int writelabel __P((int, char *, struct disklabel *)); extern char *bootarea, *specname; extern int donothing; #ifdef DOSLABEL -struct dos_partition *dosdp; /* DOS partition, if found */ +extern struct dos_partition *dosdp; /* DOS partition, if found */ #endif /* |