summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2016-03-15 05:49:51 -0400
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2016-04-04 09:48:43 +0200
commit007eeb3e109d833a52603c3a19436907126b33a8 (patch)
tree50ccb541cc81ffa5fe866d4c807828d5b152ee8b /hurd
parent0715d1b22a6f0008b70fe4b1881045f65521ac19 (diff)
Use posix types for mig definitions.
* hurd/hurd_types.defs: Use posix types. * libfshelp/start-translator-long.c: Use uint32_t instead of unsigned32_t.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurd_types.defs20
1 files changed, 10 insertions, 10 deletions
diff --git a/hurd/hurd_types.defs b/hurd/hurd_types.defs
index 18375001..4d7013c8 100644
--- a/hurd/hurd_types.defs
+++ b/hurd/hurd_types.defs
@@ -349,16 +349,16 @@ serverprefix SERVERPREFIX;
type data_t = array[] of char;
type string_t = c_string[1024]; /* XXX */
type io_statbuf_t = struct[32] of int;
-type uid_t = unsigned32;
-type gid_t = unsigned32;
-type mode_t = unsigned32;
-type retry_type = unsigned32;
-type pid_t = int32;
-type wait_status_t = int32;
-type loff_t = int64;
-type ino64_t = int64;
-type file_changed_type_t = unsigned32;
-type dir_changed_type_t = unsigned32;
+type uid_t = uint32_t;
+type gid_t = uint32_t;
+type mode_t = uint32_t;
+type retry_type = uint32_t;
+type pid_t = int32_t;
+type wait_status_t = int32_t;
+type loff_t = int64_t;
+type ino64_t = int64_t;
+type file_changed_type_t = uint32_t;
+type dir_changed_type_t = uint32_t;
type portarray_t = array[] of mach_port_send_t;
type intarray_t = array[] of int;