| 167 | } |
| 168 | |
| 169 | long |
| 170 | filesize(char *file) |
| 171 | { |
| 172 | if (findfirst(file)) { |
| 173 | return ((long) ffd.nFileSizeLow); |
| 174 | } else |
| 175 | return -1L; |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * Chdrive() changes the default drive. |
nothing calls this directly
no test coverage detected