diff options
author | Roland McGrath <roland@gnu.org> | 2002-04-08 02:16:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-04-08 02:16:01 +0000 |
commit | 14906e37fed856d51451b5bc2ac3c68d1e29e1a6 (patch) | |
tree | 8d755f7396060e572f8ea7c86f5ad27bfc90f2f3 | |
parent | b44e30163de4d49d3304c040cf380ad3a8708a86 (diff) | |
download | glibc-14906e37fed856d51451b5bc2ac3c68d1e29e1a6.tar.gz glibc-14906e37fed856d51451b5bc2ac3c68d1e29e1a6.tar.xz glibc-14906e37fed856d51451b5bc2ac3c68d1e29e1a6.zip |
2002-04-06 Roland McGrath <roland@frob.com>
* hurd/catch-exc.c: Use integer_t instead of int. * hurd/hurdfault.c: Likewise.
-rw-r--r-- | hurd/catch-exc.c | 3 | ||||
-rw-r--r-- | hurd/hurdfault.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hurd/catch-exc.c b/hurd/catch-exc.c index 33366e0d1a..2e0cfef88a 100644 --- a/hurd/catch-exc.c +++ b/hurd/catch-exc.c @@ -31,7 +31,8 @@ _S_catch_exception_raise (mach_port_t port, exception_data_t code, mach_msg_type_number_t codeCnt #else /* Vanilla Mach 3.0 interface. */ - int exception, int code, int subcode + integer_t exception, + integer_t code, integer_t subcode #endif ) { diff --git a/hurd/hurdfault.c b/hurd/hurdfault.c index 6313f16e2e..6ab5a97876 100644 --- a/hurd/hurdfault.c +++ b/hurd/hurdfault.c @@ -45,7 +45,8 @@ _hurdsig_fault_catch_exception_raise (mach_port_t port, exception_data_t code, mach_msg_type_number_t codeCnt #else /* Vanilla Mach 3.0 interface. */ - int exception, int code, int subcode + integer_t exception, + integer_t code, integer_t subcode #endif ) { |