diff options
author | Vincent Labrecque <vincent@cvs.openbsd.org> | 2002-03-11 13:02:57 +0000 |
---|---|---|
committer | Vincent Labrecque <vincent@cvs.openbsd.org> | 2002-03-11 13:02:57 +0000 |
commit | 195cf29954aced38f2c3260a00e78b6c543347d7 (patch) | |
tree | 24960afa1083d432e589842ec187e8c39819c7ba /usr.bin/mg/funmap.h | |
parent | 3acf70e568831a61d560c056d28ea06bf89c72df (diff) |
* Move to ANSI function definitions.
* Add a whole lot of consts where I thought it made sense
no ok, but no objections either...
Diffstat (limited to 'usr.bin/mg/funmap.h')
-rw-r--r-- | usr.bin/mg/funmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/mg/funmap.h b/usr.bin/mg/funmap.h index 22f6d67d542..ee35e27fa5d 100644 --- a/usr.bin/mg/funmap.h +++ b/usr.bin/mg/funmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: funmap.h,v 1.2 2001/05/24 13:00:45 art Exp $ */ +/* $OpenBSD: funmap.h,v 1.3 2002/03/11 13:02:56 vincent Exp $ */ /* * Copyright (c) 2001 Artur Grabowski <art@openbsd.org>. All rights reserved. * @@ -24,7 +24,7 @@ */ void funmap_init(void); -PF name_function(char *); -char *function_name(PF); -LIST *complete_function_list(char *, int); -int funmap_add(PF, char *); +PF name_function(const char *); +const char *function_name(PF); +LIST *complete_function_list(const char *, int); +int funmap_add(PF, const char *); |