fix regression in size of nlink_t (broken stat struct) on x86_64

rather than moving nlink_t back to the arch-specific file, I've added
a macro _Reg defined to the canonical type for register-size values on
the arch. this is not the same as _Addr for (not-yet-supported)
32-on-64 pseudo-archs like x32 and mips n32, so a new macro was
needed.
This commit is contained in:
Rich Felker
2013-07-22 15:45:28 -04:00
parent 8327ae0cb2
commit 1c6cace0bf
7 changed files with 7 additions and 1 deletions
+1
View File
@@ -1,5 +1,6 @@
#define _Addr int
#define _Int64 long long
#define _Reg int
TYPEDEF __builtin_va_list va_list;
TYPEDEF __builtin_va_list __isoc_va_list;