From e8d9b454873d05a33c100cd056cd85a09a87f02b Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Tue, 26 Sep 2006 01:11:05 +0000 Subject: [PATCH] (scm_to_off64_t, scm_from_off64_t): New macros. --- libguile/_scm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/_scm.h b/libguile/_scm.h index ea654ad39..906de3780 100644 --- a/libguile/_scm.h +++ b/libguile/_scm.h @@ -167,6 +167,8 @@ #else # error sizeof(off_t) is not 4 or 8. #endif +#define scm_to_off64_t scm_to_int64 +#define scm_from_off64_t scm_from_int64 #endif /* SCM__SCM_H */