summaryrefslogtreecommitdiff
path: root/sbin/fdisk/user.h
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2014-03-07 21:56:14 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2014-03-07 21:56:14 +0000
commit951ecdf98f87786cff16eaadb10e547fe0ffb7be (patch)
tree4e169d3dee79dcbb7d546e290e918f7accec2f8a /sbin/fdisk/user.h
parent885f4aba7c7be961b2cbaa4abd2a9377410aa770 (diff)
Relieve the code of an overburden of unnecessary typedef
abstraction. Call a 'struct' a 'struct' and not a pony. No functional change. idea ok deraadt@
Diffstat (limited to 'sbin/fdisk/user.h')
-rw-r--r--sbin/fdisk/user.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/fdisk/user.h b/sbin/fdisk/user.h
index 92d42efde74..2726e4bb11f 100644
--- a/sbin/fdisk/user.h
+++ b/sbin/fdisk/user.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: user.h,v 1.7 2003/06/03 01:13:19 weingart Exp $ */
+/* $OpenBSD: user.h,v 1.8 2014/03/07 21:56:13 krw Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -32,9 +32,9 @@
#include "mbr.h"
/* Prototypes */
-int USER_init(disk_t *, mbr_t *, int);
-int USER_modify(disk_t *, mbr_t *, off_t, off_t);
-int USER_print_disk(disk_t *);
+int USER_init(struct disk *, struct mbr *, int);
+int USER_modify(struct disk *, struct mbr *, off_t, off_t);
+int USER_print_disk(struct disk *);
#endif /* _USER_H */