svn commit: r219344 - head/lib/libutil

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Mar 6 17:46:07 UTC 2011


Author: pjd
Date: Sun Mar  6 17:46:06 2011
New Revision: 219344
URL: http://svn.freebsd.org/changeset/base/219344

Log:
  expand_number() needs uint64_t, declare it here if not already declared.
  
  MFC after:	3 days

Modified:
  head/lib/libutil/libutil.h

Modified: head/lib/libutil/libutil.h
==============================================================================
--- head/lib/libutil/libutil.h	Sun Mar  6 17:45:37 2011	(r219343)
+++ head/lib/libutil/libutil.h	Sun Mar  6 17:46:06 2011	(r219344)
@@ -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


More information about the svn-src-all mailing list