Mercurial > emacs
changeset 26556:9698de836607
(unexec): Use unsigned instead of uintptr_t because
that fails on IBM PowerPC, AIX 4.2.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 23 Nov 1999 17:22:03 +0000 |
parents | 5dec6111686f |
children | 90021a936bd5 |
files | src/unexaix.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/unexaix.c Tue Nov 23 13:17:01 1999 +0000 +++ b/src/unexaix.c Tue Nov 23 17:22:03 1999 +0000 @@ -151,9 +151,9 @@ * driving logic. */ int unexec (char *new_name, char *a_name, - uintptr_t data_start, - uintptr_t bss_start, - uintptr_t entry_address) + unsigned data_start, + unsigned bss_start, + unsigned entry_address) { int new = -1, a_out = -1;