mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 02:11:19 +00:00
[util] Fix yet another suggested const warning
I keep forgetting to do an optimized build test
This commit is contained in:
parent
108d2a0746
commit
c636f7413d
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ void Sys_Shutdown (void);
|
|||
void Sys_RegisterShutdown (void (*func) (void *), void *data);
|
||||
int64_t Sys_LongTime (void);
|
||||
double Sys_DoubleTime (void);
|
||||
double Sys_DoubleTimeBase (void);
|
||||
double Sys_DoubleTimeBase (void) __attribute__ ((const));
|
||||
void Sys_TimeOfDay(date_t *date);
|
||||
|
||||
void Sys_MaskPrintf (int mask, const char *fmt, ...) __attribute__((format(PRINTF,2,3)));
|
||||
|
|
Loading…
Reference in a new issue