diff options
author | marcel <marcel@FreeBSD.org> | 2003-08-02 01:12:31 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2003-08-02 01:12:31 +0000 |
commit | 844a52c0a0bc2f85fa3e515c235551e02a290ccf (patch) | |
tree | f5180e265bddebb4c32088d167b426dc69600d0b | |
parent | 8781039ce860e4051e8d4a793a871569e5e57e3d (diff) | |
download | FreeBSD-src-844a52c0a0bc2f85fa3e515c235551e02a290ccf.zip FreeBSD-src-844a52c0a0bc2f85fa3e515c235551e02a290ccf.tar.gz |
Don't use uint64_t. Use unsigned long instead. One is supposed to use
ucontext_t without having to include headers other than <ucontext.h>.
-rw-r--r-- | sys/ia64/include/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ia64/include/ucontext.h b/sys/ia64/include/ucontext.h index fc32b76..e5fae65 100644 --- a/sys/ia64/include/ucontext.h +++ b/sys/ia64/include/ucontext.h @@ -34,10 +34,10 @@ #include <machine/_regset.h> typedef struct __mcontext { - uint64_t mc_flags; + unsigned long mc_flags; #define IA64_MC_FLAGS_SCRATCH_VALID 1 #define IA64_MC_FLAGS_HIGHFP_VALID 2 - uint64_t _reserved_; + unsigned long _reserved_; struct _special mc_special; struct _callee_saved mc_preserved; struct _callee_saved_fp mc_preserved_fp; |