Use protected variables names in prototypes visible to the userland as

per style(9) and most other header files in sys/.
This commit is contained in:
Dima Dorfman 2001-09-09 14:57:17 +00:00
parent 9a2cb2b8c2
commit 052548e983

View File

@ -173,10 +173,10 @@ struct module_stat {
#include <sys/cdefs.h>
__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