mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 13:30:26 +02:00
_scm GUILE_USE_64_CALLS compilation warning fix
* libguile/_scm.h: Check that GUILE_USE_64_CALLS is defined. Fixes an error on i386-apple-darwin9.8.0.
This commit is contained in:
parent
73124c6c63
commit
ddffdd788d
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@
|
|||
((align) ? (((len) - 1UL) | ((align) - 1UL)) + 1UL : (len))
|
||||
|
||||
|
||||
#if GUILE_USE_64_CALLS && defined(HAVE_STAT64)
|
||||
#if defined GUILE_USE_64_CALLS && 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