diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-01 13:56:11 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-01 13:56:11 +0000 |
commit | 7692d26b31818fbc8fedf27f00decb5a4c5468f8 (patch) | |
tree | 4cd060fdc7c497dced07f8154f31060d3b4ea3be /srfi/srfi-1.h | |
parent | ee6aac97334d5eb24ccdfbcfd1a49f9e28492e73 (diff) | |
download | guile-7692d26b31818fbc8fedf27f00decb5a4c5468f8.tar.gz |
* srfi-1.scm: Load srfi-1 extension.
(map, map-in-order, for-each, member, assoc): Replaced by
primitives in srfi-1.c.
(map1): Defined as `map'.
Diffstat (limited to 'srfi/srfi-1.h')
-rw-r--r-- | srfi/srfi-1.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/srfi/srfi-1.h b/srfi/srfi-1.h index b42f4f97a..5914ff742 100644 --- a/srfi/srfi-1.h +++ b/srfi/srfi-1.h @@ -58,9 +58,10 @@ # define SCM_SRFI1_API extern #endif -SCM_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args); -SCM_API SCM scm_srfi1_for_each (SCM proc, SCM arg1, SCM args); +SCM_SRFI1_API SCM scm_srfi1_map (SCM proc, SCM arg1, SCM args); +SCM_SRFI1_API SCM scm_srfi1_for_each (SCM proc, SCM arg1, SCM args); SCM_SRFI1_API SCM scm_srfi1_member (SCM obj, SCM ls, SCM pred); +SCM_SRFI1_API SCM scm_srfi1_assoc (SCM key, SCM alist, SCM pred); SCM_SRFI1_API void scm_init_srfi_1 (void); |