選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

23 行
363B

  1. #ifndef _SYS_UTIME_H
  2. #define _SYS_UTIME_H
  3. /* This is a dummy <sys/utime.h> file, not customized for any
  4. particular system. If there is a utime.h in libc/sys/SYSDIR/sys,
  5. it will override this one. */
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. struct utimbuf
  10. {
  11. time_t actime;
  12. time_t modtime;
  13. };
  14. #ifdef __cplusplus
  15. };
  16. #endif
  17. #endif /* _SYS_UTIME_H */