# HG changeset patch # User Dave Love # Date 950212805 0 # Node ID 5980f19581dc354ea872b010b50fc623f7e75881 # Parent 1b0072274ea3a77f6f28e894a857c38e33014fee (pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add `static' to definitions to keep pcc happy. diff -r 1b0072274ea3 -r 5980f19581dc lib-src/etags.c --- a/lib-src/etags.c Thu Feb 10 18:50:33 2000 +0000 +++ b/lib-src/etags.c Thu Feb 10 20:00:05 2000 +0000 @@ -1576,7 +1576,7 @@ } /* Record a tag. */ -void +static void pfnote (name, is_func, linestart, linelen, lno, cno) char *name; /* tag name, or NULL if unnamed */ bool is_func; /* tag is a function */ @@ -1646,7 +1646,7 @@ * `nonam'. */ #define traditional_tag_style TRUE -void +static void new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno) char *name; /* tag name, or NULL if unnamed */ int namelen; /* tag length */ @@ -2606,7 +2606,7 @@ } -void +static void C_entries (c_ext, inf) int c_ext; /* extension of C */ FILE *inf; /* input file */ @@ -4429,7 +4429,7 @@ * Return the size of the name of the predicate, or 0 if no header * was found. */ -int +static int prolog_pred (s, last) char *s; char *last; /* Name of last clause. */ @@ -4586,7 +4586,7 @@ * Return the size of the name of the function, or 0 if no function * was found. */ -int +static int erlang_func (s, last) char *s; char *last; /* Name of last clause. */