diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-02-23 05:43:09 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-02-23 05:43:09 -0500 |
commit | d8b587796f7cfa0c3aa780ad19afe2e30ce84a09 (patch) | |
tree | 2093181217f6d42dbf85e4fde09912e7d4b438c9 /arch/x32 | |
parent | adbeefbebdae8ef48b3a46e9bb7700678d42631f (diff) | |
download | musl-d8b587796f7cfa0c3aa780ad19afe2e30ce84a09.tar.gz musl-d8b587796f7cfa0c3aa780ad19afe2e30ce84a09.tar.xz musl-d8b587796f7cfa0c3aa780ad19afe2e30ce84a09.zip |
mostly-cosmetic fixups to x32 port merge
Diffstat (limited to 'arch/x32')
-rw-r--r-- | arch/x32/syscall_arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x32/syscall_arch.h b/arch/x32/syscall_arch.h index 57e76896..39a0325b 100644 --- a/arch/x32/syscall_arch.h +++ b/arch/x32/syscall_arch.h @@ -2,7 +2,7 @@ #define __SYSCALL_LL_O(x) (x) #define __scc(X) sizeof(1?(X):0ULL) < 8 ? (unsigned long) (X) : (long long) (X) -#define syscall_arg_t long long +typedef long long syscall_arg_t; struct __timespec { long long tv_sec; long tv_nsec; }; struct __timespec_kernel { long long tv_sec; long long tv_nsec; }; #define __tsc(X) ((struct __timespec*)(unsigned long)(X)) |