From cd277778a31aaa71af29b15e76bd487bacba4d72 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Sat, 19 Aug 2000 13:59:45 +0000 Subject: [PATCH] . --- src/parse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; {