svn commit: trunk/uClibc/include

vapier at uclibc.org vapier at uclibc.org
Mon Jan 29 02:34:02 UTC 2007


Author: vapier
Date: 2007-01-28 18:34:01 -0800 (Sun, 28 Jan 2007)
New Revision: 17614

Log:
check to see if __USE_FILE_OFFSET64 is defined rather than if it evaluates to true

Modified:
   trunk/uClibc/include/glob.h


Changeset:
Modified: trunk/uClibc/include/glob.h
===================================================================
--- trunk/uClibc/include/glob.h	2007-01-29 02:31:59 UTC (rev 17613)
+++ trunk/uClibc/include/glob.h	2007-01-29 02:34:01 UTC (rev 17614)
@@ -156,7 +156,7 @@
   } glob64_t;
 #endif
 
-#if __USE_FILE_OFFSET64 && __GNUC__ < 2
+#if defined(__USE_FILE_OFFSET64) && __GNUC__ < 2
 # define glob glob64
 # define globfree globfree64
 #endif




More information about the uClibc-cvs mailing list