retire PUBLIC, PRIVATE and FORWARD

This commit is contained in:
Ben Gras
2012-03-25 20:25:53 +02:00
parent 6a73e85ad1
commit 7336a67dfe
603 changed files with 5776 additions and 5779 deletions

View File

@@ -19,13 +19,13 @@
#include <minix/const.h>
#include <minix/optset.h>
FORWARD void optset_parse_entry(struct optset *entry, char *ptr, int
static void optset_parse_entry(struct optset *entry, char *ptr, int
len);
/*===========================================================================*
* optset_parse_entry *
*===========================================================================*/
PRIVATE void optset_parse_entry(entry, ptr, len)
static void optset_parse_entry(entry, ptr, len)
struct optset *entry;
char *ptr;
int len;
@@ -68,7 +68,7 @@ int len;
/*===========================================================================*
* optset_parse *
*===========================================================================*/
PUBLIC void optset_parse(table, string)
void optset_parse(table, string)
struct optset *table;
char *string;
{