diff options
author | pjd <pjd@FreeBSD.org> | 2011-03-06 17:46:06 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2011-03-06 17:46:06 +0000 |
commit | 8bca3d08d56e2218c653bd733b5e20278339eead (patch) | |
tree | 1a61291277d42e988528c41f1457479b4f3f663d /lib | |
parent | 6edd2577d29ed1215c8cddd27e0175468182594e (diff) | |
download | FreeBSD-src-8bca3d08d56e2218c653bd733b5e20278339eead.zip FreeBSD-src-8bca3d08d56e2218c653bd733b5e20278339eead.tar.gz |
expand_number() needs uint64_t, declare it here if not already declared.
MFC after: 3 days
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libutil/libutil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libutil/libutil.h b/lib/libutil/libutil.h index 3d8f59e..66104e9 100644 --- a/lib/libutil/libutil.h +++ b/lib/libutil/libutil.h @@ -52,6 +52,11 @@ typedef __int64_t int64_t; #define _INT64_T_DECLARED #endif +#ifndef _UINT64_T_DECLARED +typedef __uint64_t uint64_t; +#define _UINT64_T_DECLARED +#endif + #ifndef _PID_T_DECLARED typedef __pid_t pid_t; #define _PID_T_DECLARED |