expand_number() needs uint64_t, declare it here if not already declared.

MFC after:	3 days
This commit is contained in:
Pawel Jakub Dawidek 2011-03-06 17:46:06 +00:00
parent 4551abd040
commit fdf6b12d1c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219344

View File

@ -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