diff options
author | Alexey Zelkin <phantom@FreeBSD.org> | 2001-12-20 18:28:52 +0000 |
---|---|---|
committer | Alexey Zelkin <phantom@FreeBSD.org> | 2001-12-20 18:28:52 +0000 |
commit | f43a321bf056a6ebc2b5617204f39fe35bede460 (patch) | |
tree | 9f41fbde0521c0de7fed53615f28db5f82d01285 /lib/libc/locale/lmessages.h | |
parent | 8bf402ad9177ed932290c7ab05ab2f94064591a1 (diff) | |
download | src-f43a321bf056a6ebc2b5617204f39fe35bede460.tar.gz src-f43a321bf056a6ebc2b5617204f39fe35bede460.zip |
style(9)'ify
Notes
Notes:
svn path=/head/; revision=88309
Diffstat (limited to 'lib/libc/locale/lmessages.h')
-rw-r--r-- | lib/libc/locale/lmessages.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/locale/lmessages.h b/lib/libc/locale/lmessages.h index 363d278b835a..41dcfa98ca6b 100644 --- a/lib/libc/locale/lmessages.h +++ b/lib/libc/locale/lmessages.h @@ -1,4 +1,4 @@ -/* +/*- * Copyright (c) 2000, 2001 Alexey Zelkin <phantom@FreeBSD.org> * All rights reserved. * @@ -26,8 +26,8 @@ * $FreeBSD$ */ -#ifndef _LMESSAGES_H -#define _LMESSAGES_H +#ifndef _LMESSAGES_H_ +#define _LMESSAGES_H_ struct lc_messages_T { const char *yesexpr; @@ -36,7 +36,7 @@ struct lc_messages_T { const char *nostr; }; -extern struct lc_messages_T * __get_current_messages_locale(void); -extern int __messages_load_locale(const char *); +struct lc_messages_T *__get_current_messages_locale(void); +int __messages_load_locale(const char *); -#endif /* _LMESSAGES_H */ +#endif /* !_LMESSAGES_H_ */ |