| # | Line 5 | Line 5 | static const char RCSid[] = "$Id$"; | |
|---|---|---|
| 5 | * Get general information on holodeck file | |
| 6 | */ | |
| 7 | ||
| 8 | + | #include "platform.h" |
| 9 | #include "holo.h" | |
| 10 | ||
| 11 | #ifndef NHBINS | |
| # | Line 56 | Line 57 | FILE *fout; | |
| 57 | nextloc = ftell(fp); /* get stdio position */ | |
| 58 | fclose(fp); /* done with stdio */ | |
| 59 | for (n = 0; nextloc > 0L; n++) { /* get the section(s) */ | |
| 60 | < | lseek(fd, (off_t)nextloc, 0); |
| 60 | > | lseek(fd, (off_t)nextloc, SEEK_SET); |
| 61 | read(fd, (char *)&nextloc, sizeof(nextloc)); | |
| 62 | fprintf(fout, "Section %d:\n", n); | |
| 63 | hdsect = hdinit(fd, NULL); /* load section directory */ | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |