From 052548e9834c0d85fc9f5039b9574e04532cb448 Mon Sep 17 00:00:00 2001 From: Dima Dorfman Date: Sun, 9 Sep 2001 14:57:17 +0000 Subject: [PATCH] Use protected variables names in prototypes visible to the userland as per style(9) and most other header files in sys/. --- sys/sys/module.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/sys/module.h b/sys/sys/module.h index 285126fe4d19..eff2e02eb408 100644 --- a/sys/sys/module.h +++ b/sys/sys/module.h @@ -173,10 +173,10 @@ struct module_stat { #include __BEGIN_DECLS -int modnext(int modid); -int modfnext(int modid); -int modstat(int modid, struct module_stat* stat); -int modfind(const char *name); +int modnext(int _modid); +int modfnext(int _modid); +int modstat(int _modid, struct module_stat* _stat); +int modfind(const char *_name); __END_DECLS #endif