Mercurial > hg > xemacs-beta
comparison src/unexaix.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | 183866b06e0b |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
490 if (lnnoptr && lnnoptr < orig_load_scnptr) /* if there is line number info */ | 490 if (lnnoptr && lnnoptr < orig_load_scnptr) /* if there is line number info */ |
491 lseek (a_out, lnnoptr, SEEK_SET); /* start copying from there */ | 491 lseek (a_out, lnnoptr, SEEK_SET); /* start copying from there */ |
492 else | 492 else |
493 lseek (a_out, orig_load_scnptr, SEEK_SET); /* Position a.out to symtab. */ | 493 lseek (a_out, orig_load_scnptr, SEEK_SET); /* Position a.out to symtab. */ |
494 | 494 |
495 while ((n = read (a_out, page, sizeof page)) > 0) | 495 while ((n = read (a_out, page, sizeof (page))) > 0) |
496 { | 496 { |
497 if (write (new, page, n) != n) | 497 if (write (new, page, n) != n) |
498 { | 498 { |
499 PERROR (new_name); | 499 PERROR (new_name); |
500 } | 500 } |