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:
parent
b016e12e95
commit
18dcd80e37
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue