You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/06/16 12:48:11 UTC

svn commit: r785155 - /commons/sandbox/runtime/trunk/src/main/native/include/acr.h

Author: mturk
Date: Tue Jun 16 10:48:10 2009
New Revision: 785155

URL: http://svn.apache.org/viewvc?rev=785155&view=rev
Log:
Check for HAVE_OFF64_T define

Modified:
    commons/sandbox/runtime/trunk/src/main/native/include/acr.h

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr.h?rev=785155&r1=785154&r2=785155&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr.h Tue Jun 16 10:48:10 2009
@@ -220,7 +220,7 @@
 typedef  long long          acr_int64_t;
 typedef  unsigned long long acr_uint64_t;
 #endif
-#if CC_SIZEOF_OFF64_T
+#if HAVE_OFF64_T
 typedef  off64_t            acr_off_t;
 #else
 typedef  int64_t            acr_off_t;