diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2024-08-31 02:49:46 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2024-08-31 02:49:53 +0200 |
| commit | e0a2e5260109185a207c402ef8c792362f1769fc (patch) | |
| tree | 35d6b891b71097fcb5748a100cd984394610c2aa /core/c | |
| parent | 7f3d8e115f389d9064905ff5aa8d359399dda20b (diff) | |
c/libc: fix time link name
Diffstat (limited to 'core/c')
| -rw-r--r-- | core/c/libc/time.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/c/libc/time.odin b/core/c/libc/time.odin index 21859c602..48def707e 100644 --- a/core/c/libc/time.odin +++ b/core/c/libc/time.odin @@ -79,7 +79,7 @@ when ODIN_OS == .Linux || ODIN_OS == .FreeBSD || ODIN_OS == .Darwin || ODIN_OS = } else { @(private) LDIFFTIME :: "difftime" @(private) LMKTIME :: "mktime" - @(private) LTIME :: "ltime" + @(private) LTIME :: "time" @(private) LCTIME :: "ctime" @(private) LGMTIME :: "gmtime" @(private) LLOCALTIME :: "localtime" |