OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The Native Client Authors. All rights reserved. | 2 * Copyright 2015 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
| 6 #ifndef GLIBCEMU_TIME_H |
| 7 #define GLIBCEMU_TIME_H 1 |
6 | 8 |
7 #ifndef GLIBCEMU_SYS_STAT_H | 9 #include_next <time.h> |
8 #define GLIBCEMU_SYS_STAT_H 1 | |
9 | 10 |
10 #include_next <sys/stat.h> | 11 #include <sys/cdefs.h> |
11 | 12 |
12 #ifdef __cplusplus | 13 __BEGIN_DECLS |
13 extern "C" { | 14 time_t timegm(struct tm *tm); |
14 #endif | 15 time_t timelocal(struct tm *tm); |
15 | 16 __END_DECLS |
16 mode_t umask(mode_t mask); | |
17 | |
18 #ifdef __cplusplus | |
19 } | |
20 #endif | |
21 | 17 |
22 #endif | 18 #endif |
OLD | NEW |