summaryrefslogtreecommitdiff
path: root/usr.bin/mg/sysdef.h
diff options
context:
space:
mode:
authorDavid Berghoff <db@cvs.openbsd.org>2005-04-03 02:09:29 +0000
committerDavid Berghoff <db@cvs.openbsd.org>2005-04-03 02:09:29 +0000
commitb6dc95251a8aa6c607dcb85f78ca2049dab538f7 (patch)
treeaaa772418d7ccfd0a020a53d1c6d7e85f7f7a47a /usr.bin/mg/sysdef.h
parentbadc0ff2f722af5ded41bf6344b8e76a32e9017d (diff)
This is a no binary change which does:
- spelling, punctuation fixes - variable declaration lineup - use parentheses for return and sizeof - K&R function declarations -> ANSI - other minor code beautification ok henning@
Diffstat (limited to 'usr.bin/mg/sysdef.h')
-rw-r--r--usr.bin/mg/sysdef.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/mg/sysdef.h b/usr.bin/mg/sysdef.h
index 49c95e6837f..4e97a7b429f 100644
--- a/usr.bin/mg/sysdef.h
+++ b/usr.bin/mg/sysdef.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sysdef.h,v 1.11 2002/02/21 04:16:23 deraadt Exp $ */
+/* $OpenBSD: sysdef.h,v 1.12 2005/04/03 02:09:28 db Exp $ */
/*
* POSIX system header file
@@ -10,14 +10,14 @@
#include <string.h>
#include <errno.h>
-#define KBLOCK 8192 /* Kill grow. */
-#define GOOD 0 /* Good exit status. */
-#define SYMBLINK 1 /* Handle symbolic links */
+#define KBLOCK 8192 /* Kill grow. */
+#define GOOD 0 /* Good exit status. */
+#define SYMBLINK 1 /* Handle symbolic links. */
typedef int RSIZE; /* Type for file/region sizes */
typedef short KCHAR; /* Type for internal keystrokes */
-#define MALLOCROUND(m) (m+=7,m&=~7) /* round up to 8 byte boundry */
+#define MALLOCROUND(m) (m+=7,m&=~7) /* round up to 8 byte boundary */
struct fileinfo {
uid_t fi_uid;