diff options
author | Brian Cully <bjc@kublai.com> | 2010-04-06 11:03:28 -0400 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2010-04-06 11:03:28 -0400 |
commit | 801c34bc45981b9faac9442d496d56127cc23e50 (patch) | |
tree | 242fcf6a950c5e16c6d4c2d684ff524fd5017a5b /include | |
parent | 7033c319d71a49942119ec3005d7b18840b0cd37 (diff) | |
download | nastd-801c34bc45981b9faac9442d496d56127cc23e50.tar.gz nastd-801c34bc45981b9faac9442d496d56127cc23e50.zip |
include/compat.h: Add uint64_t for FreeBSD 2.
Diffstat (limited to 'include')
-rw-r--r-- | include/compat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/compat.h b/include/compat.h index a3e238e..986c3f7 100644 --- a/include/compat.h +++ b/include/compat.h @@ -31,6 +31,7 @@ #if FREEBSD_2 typedef u_int32_t uint32_t; +typedef u_int64_t uint64_t; #endif /* FREEBSD_2 */ #endif /* OS_FREEBSD */ |