Changes in uspace/lib/c/include/time.h [bc56f30:09ab0a9a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/time.h
rbc56f30 r09ab0a9a 33 33 */ 34 34 35 #ifndef _LIBC_TIME_H_36 #define _LIBC_TIME_H_35 #ifndef LIBC_TIME_H_ 36 #define LIBC_TIME_H_ 37 37 38 #include <_bits/decls.h> 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 39 41 40 42 /* ISO/IEC 9899:2011 7.27.1 (2) */ … … 50 52 #include <_bits/size_t.h> 51 53 52 __C_DECLS_BEGIN;53 54 54 /* ISO/IEC 9899:2011 7.27.1 (3), (4) */ 55 55 … … 64 64 struct tm { 65 65 int tm_sec; 66 int tm_nsec; /**< Nonstandard extension, nanoseconds since last second. */ 66 #ifdef _HELENOS_SOURCE 67 int tm_nsec; 68 #endif 67 69 int tm_min; 68 70 int tm_hour; … … 106 108 const struct tm *__restrict__); 107 109 108 __C_DECLS_END;109 110 110 #ifdef _HELENOS_SOURCE 111 111 … … 116 116 #include <stdbool.h> 117 117 #include <_bits/errno.h> 118 119 __HELENOS_DECLS_BEGIN;120 118 121 119 typedef long long sec_t; … … 159 157 extern void udelay(sysarg_t); 160 158 161 __HELENOS_DECLS_END; 159 #endif /* _HELENOS_SOURCE */ 162 160 163 #endif /* _HELENOS_SOURCE */ 161 #ifdef __cplusplus 162 } 163 #endif 164 164 165 165 #endif
Note:
See TracChangeset
for help on using the changeset viewer.