| 432 | } |
| 433 | |
| 434 | long |
| 435 | filesize_nh(char *file) |
| 436 | { |
| 437 | char *dta; |
| 438 | |
| 439 | if (findfirst_file(file)) { |
| 440 | dta = getdta(); |
| 441 | return (*(long *) (dta + 26)); |
| 442 | } else |
| 443 | return -1L; |
| 444 | } |
| 445 | |
| 446 | #endif /* __GO32__ */ |
| 447 |
nothing calls this directly
no test coverage detected