diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-01 14:21:11 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-01 14:21:11 +0200 |
commit | 43f4ffffb830fef2d75197bfa238148742b665d1 (patch) | |
tree | e0fe81b249b286414451eb15bee1e1746ac7bf22 /FICS/command.c | |
parent | 5ce0494ca1249adbb12df99293dfe48303c27dc1 (diff) |
Made functions private
Diffstat (limited to 'FICS/command.c')
-rw-r--r-- | FICS/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/command.c b/FICS/command.c index f3c9110..1024aae 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -123,7 +123,7 @@ alias_lookup(char *tmp, alias_type *alias_list, int numalias) return -1; /* not found */ } -PUBLIC int +PRIVATE int alias_count(alias_type *alias_list) { int i; @@ -661,7 +661,7 @@ process_login(int p, char *loginname) return 0; } -void +PRIVATE void boot_out(int p, int p1) { int fd; |