mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 23:11:38 +00:00
Make some functions static.
They don't need to be public.
This commit is contained in:
parent
1b2a5d69f5
commit
92714b19bf
2 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue