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

Warning fixes from Maciej Stachowiak:

* backtrace.h (scm_display_application, scm_backtrace): Add
prototypes.
* debug.c (scm_m_start_stack): Make this function static.
* fluids.h (scm_fluid_p): Add prototype.
* procprop.c (scm_i_procedure_arity): Make this function static.
* regex-posix.c (scm_regexp_error_msg): Make this function static.
* regex-posix.h (scm_init_regex_posix): Use prototype, not K&R decl.
* root.h (scm_dynamic_root): Add external prototype.
* scmsigs.h (scm_usleep): Add external prototype.
* script.h (scm_init_script): Use prototype, not K&R decl.
* stacks.h (scm_stack_id): Add external prototype.
* symbols.h (scm_sysintern0_no_module_lookup): Add external prototype.
This commit is contained in:
Jim Blandy 1998-09-30 10:14:59 +00:00
parent dc9f6d6a7d
commit 8a04c1a215
11 changed files with 14 additions and 5 deletions

View file

@ -57,6 +57,6 @@ extern void scm_shell_usage SCM_P ((int fatal, char *message));
extern SCM scm_compile_shell_switches SCM_P ((int argc, char **argv));
extern void scm_shell SCM_P ((int argc, char **argv));
extern char *scm_usage_name;
extern void scm_init_script ();
extern void scm_init_script SCM_P ((void));
#endif /* SCRIPTH */