From 1038def13837cf21244571d4bd4e3330f4dbdb27 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 1 Dec 1998 16:54:15 +0000 Subject: Silenced gcc prototype and ambiguity warnings. --- src/info2html/html.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/info2html/html.c b/src/info2html/html.c index 9391a523..88d36933 100644 --- a/src/info2html/html.c +++ b/src/info2html/html.c @@ -23,6 +23,16 @@ int inTable=0; char *BaseFilename=NULL; char *OverrideBaseFilename=NULL; +/* prototypes */ +char *form_info_tag_href( char *nodefile, char *nodename ); +int make_Top_link( char *destdir, char *destfile ); +int make_info_dir( char *destdir ); +void write_node_link_html( FILE *f, char *nodefile, char *refname, char *ref ); +void start_html_content( FILE *f ); +void make_nav_links( FILE *f, NODE *node ); +void html_error( char *s, char *p, char *q ); + + /* print out the url for a info file */ char *form_info_tag_href( char *nodefile, char *nodename ) { @@ -32,10 +42,12 @@ char *form_info_tag_href( char *nodefile, char *nodename ) escaped_nodename = escape_html_chars( nodename ); if (!strcmp(BaseFilename, nodefile)) + { if (OverrideBaseFilename) filename = OverrideBaseFilename; else filename = BaseFilename; + } else filename = nodefile; -- cgit v1.2.1