summaryrefslogtreecommitdiff
path: root/usr.bin/mg/funmap.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-18 20:56:54 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2005-11-18 20:56:54 +0000
commit32bcb7ccf95d4bd90f6df5701598a8ac2f4b7d7c (patch)
treebf7e2733396f8e05361873bd531fa00b54309fa8 /usr.bin/mg/funmap.h
parent8130188ef7f4e6c63aa6deeadc2f1e642ea67243 (diff)
greedy use of typedef struct was making code harder to read; ok kjell cloder
Diffstat (limited to 'usr.bin/mg/funmap.h')
-rw-r--r--usr.bin/mg/funmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/funmap.h b/usr.bin/mg/funmap.h
index ffbe3bdb79f..36773b911d3 100644
--- a/usr.bin/mg/funmap.h
+++ b/usr.bin/mg/funmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: funmap.h,v 1.5 2005/04/28 07:23:56 otto Exp $ */
+/* $OpenBSD: funmap.h,v 1.6 2005/11/18 20:56:52 deraadt Exp $ */
/*
* Copyright (c) 2001 Artur Grabowski <art@openbsd.org>. All rights reserved.
*
@@ -26,5 +26,5 @@
void funmap_init(void);
PF name_function(const char *);
const char *function_name(PF);
-LIST *complete_function_list(const char *);
+struct list *complete_function_list(const char *);
int funmap_add(PF, const char *);