comparison lib-src/etags.c @ 9491:dd3b83e4ceb0

Eliminate some -Wall warnings.
author David J. MacKenzie <djm@gnu.org>
date Wed, 12 Oct 1994 20:21:51 +0000
parents 1ff618ef732b
children 4246725d9759
comparison
equal deleted inserted replaced
9490:4e70299f958d 9491:dd3b83e4ceb0
53 #endif 53 #endif
54 54
55 #include "getopt.h" 55 #include "getopt.h"
56 56
57 extern char *getenv (); 57 extern char *getenv ();
58 char *malloc (), *realloc ();
58 59
59 /* Define CTAGS to make the program "ctags" compatible with the usual one. 60 /* Define CTAGS to make the program "ctags" compatible with the usual one.
60 Let it undefined to make the program "etags", which makes emacs-style 61 Let it undefined to make the program "etags", which makes emacs-style
61 tag tables and tags typedefs, #defines and struct/union/enum by default. */ 62 tag tables and tags typedefs, #defines and struct/union/enum by default. */
62 #ifdef CTAGS 63 #ifdef CTAGS
159 char *etags_strchr (), *etags_strrchr (); 160 char *etags_strchr (), *etags_strrchr ();
160 char *etags_getcwd (); 161 char *etags_getcwd ();
161 char *relative_filename (), *absolute_filename (), *absolute_dirname (); 162 char *relative_filename (), *absolute_filename (), *absolute_dirname ();
162 char *xmalloc (), *xrealloc (); 163 char *xmalloc (), *xrealloc ();
163 int total_size_of_entries (); 164 int total_size_of_entries ();
165 int string_numeric_p ();
166 int substr ();
167 int prestr ();
164 long readline (); 168 long readline ();
165 169
166 void Asm_labels (); 170 void Asm_labels ();
167 void C_entries (); 171 void C_entries ();
168 int Fortran_functions (); 172 int Fortran_functions ();