You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
162 B

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. #include <unistd.h>
  4. int
  5. main(int argc,
  6. char *argv[])
  7. {
  8. struct stat st;
  9. (void)st.st_atim;
  10. return 0;
  11. }