summaryrefslogtreecommitdiff
path: root/include/glob.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-01-29 02:34:01 +0000
committerMike Frysinger <vapier@gentoo.org>2007-01-29 02:34:01 +0000
commit55aaeb574609ff7fb7ac93ce4ffe01be0a56f5b7 (patch)
treed544253e16d98aee71b93bb96d7a1e196fc51f08 /include/glob.h
parenta8252d8ff712a9776e556e4cbed8e2a783404c9c (diff)
check to see if __USE_FILE_OFFSET64 is defined rather than if it evaluates to true
Diffstat (limited to 'include/glob.h')
-rw-r--r--include/glob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/glob.h b/include/glob.h
index 928b62e70..68ea2cb9c 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -156,7 +156,7 @@ typedef struct
} glob64_t;
#endif
-#if __USE_FILE_OFFSET64 && __GNUC__ < 2
+#if defined(__USE_FILE_OFFSET64) && __GNUC__ < 2
# define glob glob64
# define globfree globfree64
#endif