(unexec): Use unsigned instead of uintptr_t because
authorGerd Moellmann <gerd@gnu.org>
Tue, 23 Nov 1999 17:22:03 +0000 (17:22 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 23 Nov 1999 17:22:03 +0000 (17:22 +0000)
that fails on IBM PowerPC, AIX 4.2.

src/unexaix.c

index 787af5a..17df5b5 100644 (file)
@@ -151,9 +151,9 @@ static void write_segment (int, char *, char *);
  * 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;