diff options
author | Roland McGrath <roland@gnu.org> | 1995-10-24 23:21:09 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-10-24 23:21:09 +0000 |
commit | ff832d768c6aaedc13138add7bf775877725f9bd (patch) | |
tree | 81d4142a503692bcdcad67525b4b948df85ed9e9 | |
parent | 95937d1ac06e5eee438ee115befe62398052c435 (diff) |
(struct bootinfo): Use vm_size_t for phdr_size.
-rw-r--r-- | exec/priv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/exec/priv.h b/exec/priv.h index 7b00d9a8..0ded21eb 100644 --- a/exec/priv.h +++ b/exec/priv.h @@ -53,7 +53,8 @@ struct bootinfo size_t argvlen, envplen, dtablesize, nports, nints; mach_port_t *dtable, *portarray; int *intarray; - vm_address_t phdr_addr, phdr_size, user_entry; + vm_address_t phdr_addr, user_entry; + vm_size_t phdr_size; }; |