1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

don't fail when HAVE_STAT64 is undefined

* libguile/_scm.h: Check whether `HAVE_STAT64' is defined instead of
  checking its value.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Volker Grabsch 2010-04-21 18:47:51 +02:00 committed by Ludovic Courtès
parent b016e12e95
commit 18dcd80e37

View file

@ -120,7 +120,7 @@
#if GUILE_USE_64_CALLS && HAVE_STAT64
#if GUILE_USE_64_CALLS && defined(HAVE_STAT64)
#define CHOOSE_LARGEFILE(foo,foo64) foo64
#else
#define CHOOSE_LARGEFILE(foo,foo64) foo