[Scummvm-git-logs] scummvm master -> 43087f3a61dd77442418bb752095ca489d3b613c
digitall
noreply at scummvm.org
Tue Mar 8 06:47:43 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
43087f3a61 GLK: AGT: Fix Redundant Declarations
Commit: 43087f3a61dd77442418bb752095ca489d3b613c
https://github.com/scummvm/scummvm/commit/43087f3a61dd77442418bb752095ca489d3b613c
Author: D G Turner (digitall at scummvm.org)
Date: 2022-03-08T06:46:56Z
Commit Message:
GLK: AGT: Fix Redundant Declarations
These warnings are reported by GCC if -Wredundant-decls is passed.
Changed paths:
engines/glk/agt/agility.h
engines/glk/agt/interp.h
diff --git a/engines/glk/agt/agility.h b/engines/glk/agt/agility.h
index d99fccb8a97..f3f2fc128b9 100644
--- a/engines/glk/agt/agility.h
+++ b/engines/glk/agt/agility.h
@@ -963,7 +963,6 @@ rbool parse_config_line(char *s, rbool lastpass);
descr_line *read_ttl(fc_type fc); /* This returns the title. The return string
must be freed with free_ttl() and not
with free_descr */
-void free_ttl(descr_line *title);
void read_voc(fc_type fc);
void init_verbrec(void);
diff --git a/engines/glk/agt/interp.h b/engines/glk/agt/interp.h
index 3576d51a7bd..c8de2f5efc1 100644
--- a/engines/glk/agt/interp.h
+++ b/engines/glk/agt/interp.h
@@ -454,7 +454,6 @@ global volatile int curr_x;
extern void init_interface();
extern void start_interface(fc_type fc);
-extern void close_interface(void);
extern char *agt_input(int in_type); /* read line, return malloc'd string */
extern char agt_getkey(rbool echo_char);
extern void agt_clrscr(void);
More information about the Scummvm-git-logs
mailing list