summaryrefslogtreecommitdiff
path: root/sbin/fdisk/part.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-02-16 21:28:12 +0000
commit6d57a1a176004a7d8fc009cdcf760098f86e3263 (patch)
treeee423c619fad03813234b9362694a17f3a638f0b /sbin/fdisk/part.h
parentc707cb295fc3cac8d8feb343e949e0dcf71b8476 (diff)
Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
Diffstat (limited to 'sbin/fdisk/part.h')
-rw-r--r--sbin/fdisk/part.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sbin/fdisk/part.h b/sbin/fdisk/part.h
index 965a6d6d2ce..d9a56b2c69d 100644
--- a/sbin/fdisk/part.h
+++ b/sbin/fdisk/part.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: part.h,v 1.9 2002/01/18 08:38:26 kjell Exp $ */
+/* $OpenBSD: part.h,v 1.10 2002/02/16 21:27:34 millert Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
@@ -44,17 +44,17 @@ typedef struct _prt_t {
} prt_t;
/* Prototypes */
-void PRT_printall __P((void));
-const char *PRT_ascii_id __P((int));
-void PRT_parse __P((disk_t *, void *, off_t, off_t, prt_t *, int));
-void PRT_make __P((prt_t *, off_t, off_t, void *));
-void PRT_print __P((int, prt_t *, char *));
+void PRT_printall(void);
+const char *PRT_ascii_id(int);
+void PRT_parse(disk_t *, void *, off_t, off_t, prt_t *, int);
+void PRT_make(prt_t *, off_t, off_t, void *);
+void PRT_print(int, prt_t *, char *);
/* This does CHS -> bs/ns */
-void PRT_fix_BN __P((disk_t *, prt_t *, int));
+void PRT_fix_BN(disk_t *, prt_t *, int);
/* This does bs/ns -> CHS */
-void PRT_fix_CHS __P((disk_t *, prt_t *, int));
+void PRT_fix_CHS(disk_t *, prt_t *, int);
#endif /* _PART_H */