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
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to