summaryrefslogtreecommitdiff
path: root/libguile/smob.c
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>1999-12-12 20:35:02 +0000
committerGreg J. Badros <gjb@cs.washington.edu>1999-12-12 20:35:02 +0000
commit6e8d25a6954b00e1ff40976d95c8289cfa9fcca4 (patch)
tree524a6cdf3bb04e0ed9cb97b5d66777972e336c07 /libguile/smob.c
parent1006486ec27336ea25ece6e5d97a2dbefbfe79e3 (diff)
downloadguile-6e8d25a6954b00e1ff40976d95c8289cfa9fcca4.tar.gz
* *.c: Finish replacing K&R style prototypes with ANSI C
prototypes. * eval.c: Make scm_m_mody's 3rd argument be a const char *, not a char *. ANSI prototypes caught this. * strorder.c: Use GUILE_PROC1 for the couple SCM_PROC1 expansions that I missed. * scm_validate.h: Use SCM_BOOLP for validating bools. Do not expand macros if SCM_DOCSTRING_SNARF.
Diffstat (limited to 'libguile/smob.c')
-rw-r--r--libguile/smob.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libguile/smob.c b/libguile/smob.c
index b9651c252..83442c84c 100644
--- a/libguile/smob.c
+++ b/libguile/smob.c
@@ -79,15 +79,13 @@ scm_smob_descriptor *scm_smobs;
to make their links fail. */
SCM
-scm_mark0 (ptr)
- SCM ptr;
+scm_mark0 (SCM ptr)
{
return SCM_BOOL_F;
}
SCM
-scm_markcdr (ptr)
- SCM ptr;
+scm_markcdr (SCM ptr)
{
return SCM_CDR (ptr);
}
@@ -96,8 +94,7 @@ scm_markcdr (ptr)
*/
scm_sizet
-scm_free0 (ptr)
- SCM ptr;
+scm_free0 (SCM ptr)
{
return 0;
}