diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-18 08:47:52 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-05-18 08:47:52 +0000 |
commit | af45e3b06accc40d2c92918d5901afb793e8b247 (patch) | |
tree | 36558f693d2e1bdbcd89d8ff533c8852abf47435 /libguile/unif.h | |
parent | c8a54c4b87d561a6a4cc6464846af51f8215ef1e (diff) | |
download | guile-af45e3b06accc40d2c92918d5901afb793e8b247.tar.gz |
* Unified some rest argument checking and handling.
Diffstat (limited to 'libguile/unif.h')
-rw-r--r-- | libguile/unif.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/unif.h b/libguile/unif.h index f840c3d82..a26adc6a3 100644 --- a/libguile/unif.h +++ b/libguile/unif.h @@ -110,9 +110,9 @@ extern SCM scm_shap2ra (SCM args, const char *what); extern SCM scm_dimensions_to_uniform_array (SCM dims, SCM prot, SCM fill); extern void scm_ra_set_contp (SCM ra); extern SCM scm_make_shared_array (SCM oldra, SCM mapfunc, SCM dims); -extern SCM scm_transpose_array (SCM args); -extern SCM scm_enclose_array (SCM axes); -extern SCM scm_array_in_bounds_p (SCM args); +extern SCM scm_transpose_array (SCM ra, SCM args); +extern SCM scm_enclose_array (SCM ra, SCM axes); +extern SCM scm_array_in_bounds_p (SCM v, SCM args); extern SCM scm_uniform_vector_ref (SCM v, SCM args); extern SCM scm_cvref (SCM v, scm_sizet pos, SCM last); extern SCM scm_array_set_x (SCM v, SCM obj, SCM args); |