Make some functions static.

They don't need to be public.
This commit is contained in:
Bill Currie 2010-12-21 09:23:59 +09:00
parent 1b2a5d69f5
commit 92714b19bf
2 changed files with 2 additions and 4 deletions

View file

@ -51,7 +51,5 @@ struct client_s;
void qtv_printf (const char *fmt, ...) __attribute__((format(printf,1,2)));
void qtv_begin_redirect (redirect_t rd, struct client_s *cl);
void qtv_end_redirect (void);
void qtv_flush_redirect (void);
void qtv_connectionless_packet (void);
#endif//__qtv_h

View file

@ -134,7 +134,7 @@ qtv_printf (const char *fmt, ...)
va_end (argptr);
}
void
static void
qtv_flush_redirect (void)
{
char send[8000 + 6];
@ -326,7 +326,7 @@ qtv_status (void)
qtv_end_redirect ();
}
void
static void
qtv_connectionless_packet (void)
{
const char *cmd, *str;