Changeset 95996 in vbox
- Timestamp:
- Aug 3, 2022 9:54:48 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 152774
- Location:
- trunk/include/iprt/nocrt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/sys/types.h
r95975 r95996 34 34 typedef RTDEV dev_t; 35 35 typedef RTINODE ino_t; 36 typedef int errno_t; 36 37 37 38 #endif /* !IPRT_INCLUDED_nocrt_sys_types_h */ -
trunk/include/iprt/nocrt/time.h
r95975 r95996 31 31 32 32 #include <iprt/types.h> 33 #include <iprt/nocrt/sys/types.h> 33 34 34 35 #if defined(RT_OS_WINDOWS) && defined(_USE_32BIT_TIME_T) && ARCH_BITS == 32 … … 54 55 }; 55 56 57 RT_C_DECLS_BEGIN 58 59 errno_t RT_NOCRT(localtime_s)(struct tm *, const time_t *); /* The Microsoft version, not the C11 one. */ 56 60 struct tm *RT_NOCRT(localtime_r)(const time_t *, struct tm *); 61 62 errno_t RT_NOCRT(_localtime_s)(struct tm *, const time_t *); 63 struct tm *RT_NOCRT(_localtime_r)(const time_t *, struct tm *); 64 65 # if !defined(RT_WITHOUT_NOCRT_WRAPPERS) && !defined(RT_WITHOUT_NOCRT_WRAPPER_ALIASES) 66 # define localtime_s RT_NOCRT(localtime_s) 67 # define localtime_r RT_NOCRT(localtime_r) 68 69 # define _localtime_s RT_NOCRT(localtime_s) 70 # define _localtime_r RT_NOCRT(localtime_r) 71 # endif 72 73 RT_C_DECLS_END 57 74 58 75
Note:
See TracChangeset
for help on using the changeset viewer.