caddr_t is obsolete. Replace by void *, except for struct empfile

member cache, which becomes char * to keep pointer arithmetic simple.
This commit is contained in:
Markus Armbruster 2004-08-23 18:29:44 +00:00
parent 059353e957
commit dcfd251f95
40 changed files with 80 additions and 82 deletions

View file

@ -57,9 +57,9 @@ struct lonstr {
#define LS_SIGNED 2
#define getloan(n, lp) \
ef_read(EF_LOAN, n, (caddr_t)lp)
ef_read(EF_LOAN, n, lp)
#define putloan(n, lp) \
ef_write(EF_LOAN, n, (caddr_t)lp)
ef_write(EF_LOAN, n, lp)
#define getloanp(n) \
(struct lonstr *) ef_ptr(EF_LOAN, n)