| Guido van Rossum | ce9739b | 1994-01-05 16:17:15 +0000 | [diff] [blame] | 1 | #include "::unixemu:stat.h" |
| 2 | |||||
| 3 | /* Interfaced used by import.c */ | ||||
| 4 | |||||
| 5 | long | ||||
| 6 | getmtime(path) | ||||
| 7 | char *path; | ||||
| 8 | { | ||||
| 9 | struct stat st; | ||||
| 10 | if (stat(path, &st) != 0) | ||||
| 11 | return -1L; | ||||
| 12 | return st.st_mtime; | ||||
| 13 | } | ||||