1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

checker: cleanup type alias pascal case check (#10217)

This commit is contained in:
Enzo
2021-05-27 21:40:32 +02:00
committed by GitHub
parent a095a27d00
commit df2b688337
3 changed files with 3 additions and 5 deletions

View File

@@ -5,8 +5,6 @@ module time
#include <time.h>
type time_t = i64
pub const (
days_string = 'MonTueWedThuFriSatSun'
month_days = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]

View File

@@ -18,7 +18,7 @@ struct C.tm {
tm_isdst int
}
fn C.timegm(&C.tm) time_t
fn C.timegm(&C.tm) C.time_t
// fn C.gmtime_r(&tm, &gbuf)
fn C.localtime_r(t &time_t, tm &C.tm)