--- mstools/posix/h/utime.h 2018/08/09 18:22:18 1.1.1.1 +++ mstools/posix/h/utime.h 2018/08/09 18:24:36 1.1.1.2 @@ -11,12 +11,6 @@ Abstract: This module contains the utimbuf structure described in section 5.6.6.2 of IEEE P1003.1/Draft 13. -Author: - - Mark Lucovsky (markl) 15-Mar-1989 - -Revision History: - --*/ #ifndef _UTIME_ @@ -24,9 +18,17 @@ Revision History: #include +#ifdef __cplusplus +extern "C" { +#endif + struct utimbuf { time_t actime; time_t modtime; }; +#ifdef __cplusplus +} +#endif + #endif /* _UTIME_ */