diff options
Diffstat (limited to 'src/game/bg_lib.h')
-rw-r--r-- | src/game/bg_lib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/bg_lib.h b/src/game/bg_lib.h index 221e19e4..d31f4cf8 100644 --- a/src/game/bg_lib.h +++ b/src/game/bg_lib.h @@ -15,7 +15,7 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ - + typedef int size_t; typedef char * va_list; @@ -42,8 +42,8 @@ typedef char * va_list; // Misc functions typedef int cmp_t( const void *, const void * ); void qsort( void *a, size_t n, size_t es, cmp_t *cmp ); -void srand( unsigned seed ); -int rand( void ); +void srand( unsigned seed ); +int rand( void ); // String functions size_t strlen( const char *string ); |