diff options
Diffstat (limited to 'userland/libc/time/localtime.c')
-rw-r--r-- | userland/libc/time/localtime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/time/localtime.c b/userland/libc/time/localtime.c index 40ca351..8ad74d8 100644 --- a/userland/libc/time/localtime.c +++ b/userland/libc/time/localtime.c @@ -16,6 +16,7 @@ // https://pubs.opengroup.org/onlinepubs/9699919799/functions/localtime.html struct tm *localtime(const time_t *timer) { + (void)timer; // TODO: Implement return &localtime_r; } |