time: add missing gmtime() declaration

pull/13898/head
Cameron Katri 2022-04-01 23:14:20 -04:00
parent 405212b170
commit 6aa7dd53b7
No known key found for this signature in database
GPG Key ID: BAFFD97826540F1C
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ fn C.localtime_r(t &C.time_t, tm &C.tm)
fn C.time(t &C.time_t) C.time_t fn C.time(t &C.time_t) C.time_t
fn C.gmtime(t &C.time_t) &C.tm
fn C.gmtime_r(t &C.time_t, res &C.tm) &C.tm fn C.gmtime_r(t &C.time_t, res &C.tm) &C.tm
fn C.strftime(buf &C.char, maxsize C.size_t, fmt &C.char, tm &C.tm) C.size_t fn C.strftime(buf &C.char, maxsize C.size_t, fmt &C.char, tm &C.tm) C.size_t