diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-03-02 20:54:43 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-03-02 20:54:43 +0000 |
commit | 7866a09b5b355ea277d2dd780b24e98f647329d4 (patch) | |
tree | 475d3833314d66222ba9773505eec1f0af7d3b01 /libguile/gdb_interface.h | |
parent | e510ed373f315ca26f17be1ebe963c5c226a158e (diff) | |
download | guile-7866a09b5b355ea277d2dd780b24e98f647329d4.tar.gz |
* list.c: Moved append docs to append! Thanks Dirk Hermann. Also,
added append docs from R4RS.
* strings.c: Docstring typo fix, + eliminate unneeded IMP tests.
Thanks Dirk Hermann!
* chars.h: Provide SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR and
deprecate SCM_ICHRP, SCM_ICHR, SCM_MAKICHR. Thanks Dirk Hermann!
* *.h, *.c: Use SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR throughout.
Drop use of SCM_P for function prototypes... assume an ANSI C
compiler. Thanks Dirk Hermann!
Diffstat (limited to 'libguile/gdb_interface.h')
-rw-r--r-- | libguile/gdb_interface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/gdb_interface.h b/libguile/gdb_interface.h index b8d5324d0..2fcbf9507 100644 --- a/libguile/gdb_interface.h +++ b/libguile/gdb_interface.h @@ -83,7 +83,7 @@ extern int gdb_output_length; In the "lisp/c" language mode, this is used to heuristically discriminate lisp values from C values during printing. */ -extern int gdb_maybe_valid_type_p SCM_P ((GDB_TYPE value)); +extern int gdb_maybe_valid_type_p (GDB_TYPE value); /* Parse expression in string STR. Store result in GDB_RESULT, then return 0 to indicate success. On error, return -1 to indicate @@ -92,7 +92,7 @@ extern int gdb_maybe_valid_type_p SCM_P ((GDB_TYPE value)); no message is passed. Please note that the resulting value should be protected against garbage collection. */ -extern int gdb_read SCM_P ((char *str)); +extern int gdb_read (char *str); /* Evaluate expression EXP. Store result in GDB_RESULT, then return 0 to indicate success. On error, return -1 to indicate failure. Any @@ -101,7 +101,7 @@ extern int gdb_read SCM_P ((char *str)); if no output is passed. Please note that the resulting lisp object should be protected against garbage collection. */ -extern int gdb_eval SCM_P ((GDB_TYPE exp)); +extern int gdb_eval (GDB_TYPE exp); /* Print VALUE. Store output in GDB_OUTPUT and GDB_OUTPUT_LENGTH. Return 0 to indicate success. On error, return -1 to indicate @@ -109,7 +109,7 @@ extern int gdb_eval SCM_P ((GDB_TYPE exp)); failure. Note that this function should be robust against strange values. It could in fact be passed any kind of value. */ -extern int gdb_print SCM_P ((GDB_TYPE value)); +extern int gdb_print (GDB_TYPE value); /* Bind NAME to VALUE in interpreter. (GDB has previously obtained NAME by passing a string to gdb_read.) Return 0 to indicate @@ -121,6 +121,6 @@ extern int gdb_print SCM_P ((GDB_TYPE value)); For scheme interpreters, this function should introduce top-level bindings. */ -extern int gdb_binding SCM_P ((GDB_TYPE name, GDB_TYPE value)); +extern int gdb_binding (GDB_TYPE name, GDB_TYPE value); #endif /* GDB_INTERFACE_H */ |