posix-stat-st_mtim.c 133 B

12345678910111213
  1. #include <sys/stat.h>
  2. int
  3. main(void)
  4. {
  5. struct stat sb;
  6. /* Can we reference st_mtim? */
  7. (void)sb.st_mtim.tv_sec;
  8. return (0);
  9. }