1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-15 16:20:17 +02:00

* gdb_interface.h (GDB_INTERFACE): Added some (void *) casts to avoid

warnings.
This commit is contained in:
Mikael Djurfeldt 1997-02-21 23:02:01 +00:00
parent a7580a9738
commit 01c77a0aa2
2 changed files with 10 additions and 5 deletions

View file

@ -41,11 +41,11 @@ void *gdb_interface[] = { \
&gdb_result, \
&gdb_output, \
&gdb_output_length, \
gdb_maybe_valid_type_p, \
gdb_read, \
gdb_eval, \
gdb_print, \
gdb_binding \
(void *) gdb_maybe_valid_type_p, \
(void *) gdb_read, \
(void *) gdb_eval, \
(void *) gdb_print, \
(void *) gdb_binding \
}; \