summaryrefslogtreecommitdiff
path: root/usr.bin/mg/funmap.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/funmap.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/funmap.h')
-rw-r--r--usr.bin/mg/funmap.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/mg/funmap.h b/usr.bin/mg/funmap.h
index ee35e27fa5d..81c3f902fce 100644
--- a/usr.bin/mg/funmap.h
+++ b/usr.bin/mg/funmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: funmap.h,v 1.3 2002/03/11 13:02:56 vincent Exp $ */
+/* $OpenBSD: funmap.h,v 1.4 2005/04/03 02:09:28 db Exp $ */
/*
* Copyright (c) 2001 Artur Grabowski <art@openbsd.org>. All rights reserved.
*
@@ -23,8 +23,8 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-void funmap_init(void);
-PF name_function(const char *);
-const char *function_name(PF);
-LIST *complete_function_list(const char *, int);
-int funmap_add(PF, const char *);
+void funmap_init(void);
+PF name_function(const char *);
+const char *function_name(PF);
+LIST *complete_function_list(const char *, int);
+int funmap_add(PF, const char *);