Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/time.h
6171 views
1
#ifndef _COMPAT_TIME_H
2
#define _COMPAT_TIME_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
int dysize(int year);
9
#define _timezone timezone
10
#define _daylight daylight
11
12
#ifdef __cplusplus
13
}
14
#endif
15
16
#include_next <time.h>
17
18
#endif
19
20