1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

srfi-60.c shouldn't include private-gc.h

* srfi/srfi-60.c (SCM_MIN): Define here instead of including
  private-gc.h.
This commit is contained in:
Neil Jerram 2009-06-29 20:41:50 +01:00
parent f450c2c06e
commit c00be3d85d

View file

@ -22,9 +22,9 @@
#endif
#include <libguile.h>
#include <libguile/private-gc.h> /* for SCM_MIN */
#include <srfi/srfi-60.h>
#define SCM_MIN(A, B) ((A) < (B) ? (A) : (B))
SCM_DEFINE (scm_srfi60_log2_binary_factors, "log2-binary-factors", 1, 0, 0,
(SCM n),