diff --git a/src/parse.c b/src/parse.c index a792ee5fa..9aad3339b 100644 --- a/src/parse.c +++ b/src/parse.c @@ -62,7 +62,7 @@ static char nsprefix = 0; ** the old. 'name' is now assumed to be a null terminated ** string and the search is the for server and user. */ -aClient *find_client(name, cptr) +aClient inline *find_client(name, cptr) char *name; aClient *cptr; { @@ -75,7 +75,7 @@ aClient *find_client(name, cptr) return cptr; } -aClient *find_nickserv(name, cptr) +aClient inline *find_nickserv(name, cptr) char *name; aClient *cptr; { @@ -99,7 +99,7 @@ aClient *find_nickserv(name, cptr) ** the old. 'name' is now assumed to be a null terminated ** string. */ -aClient *find_server(name, cptr) +aClient inline *find_server(name, cptr) char *name; aClient *cptr; { @@ -112,7 +112,7 @@ aClient *find_server(name, cptr) } -aClient *find_name(name, cptr) +aClient inline *find_name(name, cptr) char *name; aClient *cptr; {