diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-12-19 10:18:25 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-12-21 12:35:46 +0100 |
commit | c7654756ee191de3d495a5d716ffe9b09d22ba6c (patch) | |
tree | 7011d0c639dc71355559322992634feb9c694558 /cpu.sym | |
parent | 73fbf2504ae606dda81372701a67dad6fee0865e (diff) | |
download | mig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.tar.gz mig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.tar.bz2 mig-c7654756ee191de3d495a5d716ffe9b09d22ba6c.zip |
Provide intptr_t and uintptr_t as default types
Message-Id: <Y6CAwaY0IRqihOjU@mars>
Diffstat (limited to 'cpu.sym')
-rw-r--r-- | cpu.sym | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -30,6 +30,7 @@ * Fetch values from the Mach header. */ #include <mach/message.h> +#include <stdint.h> /* * Known values for the msgt_name field. @@ -103,6 +104,8 @@ expr sizeof(int) sizeof_int expr sizeof(long) sizeof_long expr sizeof(float) sizeof_float expr sizeof(double) sizeof_double +expr sizeof(uintptr_t) sizeof_uintptr_t +expr sizeof(intptr_t) sizeof_intptr_t expr sizeof(mach_msg_header_t) sizeof_mach_msg_header_t expr sizeof(mach_msg_type_long_t) sizeof_mach_msg_type_long_t expr sizeof(mach_msg_type_t) sizeof_mach_msg_type_t |