diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2025-03-16 12:31:07 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2025-03-16 12:31:07 +0100 |
commit | 7f2ec99b62ebdaac50e68c46e7638277274273d8 (patch) | |
tree | 93976600bfb8b6114c05fc4fa4af31e761719294 /FICS/utils.h | |
parent | 87018218e5c473f855e677b45d17d2828c7e834e (diff) |
Changed the parameter type of untenths()
Diffstat (limited to 'FICS/utils.h')
-rw-r--r-- | FICS/utils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/utils.h b/FICS/utils.h index b5f77c6..5342be2 100644 --- a/FICS/utils.h +++ b/FICS/utils.h @@ -31,6 +31,7 @@ #ifndef _UTILS_H #define _UTILS_H +#include <stdint.h> #include <stdio.h> #include "common.h" /* PRINTFLIKE() */ @@ -104,7 +105,7 @@ extern int safechar(int); extern int safestring(char *); extern int search_directory(char *, char *, char **, int); extern int truncate_file(char *, int); -extern time_t untenths(unsigned int); +extern time_t untenths(uint64_t); extern unsigned int tenth_secs(void); //extern void pprintf_dohightlight(int); //extern void sprintf_dohightlight(int, char *); |