diff options
| author | Dave Love | 2000-02-10 20:00:05 +0000 |
|---|---|---|
| committer | Dave Love | 2000-02-10 20:00:05 +0000 |
| commit | 0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582 (patch) | |
| tree | 9e3b3a2374dfa8dae8e430dab82c4a1721a2b9b9 /lib-src | |
| parent | a0eddf92d5573360646fb75e8bedfe02b3e96fe8 (diff) | |
| download | emacs-0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582.tar.gz emacs-0dacfc4b8ac0ff4b4f1e68b2ade58d79407be582.zip | |
(pfnote, new_pfnote, C_entries, prolog_pred, erlang_func): Add
`static' to definitions to keep pcc happy.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/etags.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib-src/etags.c b/lib-src/etags.c index bbc3f690511..2a4ce864405 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c | |||
| @@ -1576,7 +1576,7 @@ find_entries (file, inf) | |||
| 1576 | } | 1576 | } |
| 1577 | 1577 | ||
| 1578 | /* Record a tag. */ | 1578 | /* Record a tag. */ |
| 1579 | void | 1579 | static void |
| 1580 | pfnote (name, is_func, linestart, linelen, lno, cno) | 1580 | pfnote (name, is_func, linestart, linelen, lno, cno) |
| 1581 | char *name; /* tag name, or NULL if unnamed */ | 1581 | char *name; /* tag name, or NULL if unnamed */ |
| 1582 | bool is_func; /* tag is a function */ | 1582 | bool is_func; /* tag is a function */ |
| @@ -1646,7 +1646,7 @@ pfnote (name, is_func, linestart, linelen, lno, cno) | |||
| 1646 | * `nonam'. | 1646 | * `nonam'. |
| 1647 | */ | 1647 | */ |
| 1648 | #define traditional_tag_style TRUE | 1648 | #define traditional_tag_style TRUE |
| 1649 | void | 1649 | static void |
| 1650 | new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno) | 1650 | new_pfnote (name, namelen, is_func, linestart, linelen, lno, cno) |
| 1651 | char *name; /* tag name, or NULL if unnamed */ | 1651 | char *name; /* tag name, or NULL if unnamed */ |
| 1652 | int namelen; /* tag length */ | 1652 | int namelen; /* tag length */ |
| @@ -2606,7 +2606,7 @@ make_C_tag (isfun) | |||
| 2606 | } | 2606 | } |
| 2607 | 2607 | ||
| 2608 | 2608 | ||
| 2609 | void | 2609 | static void |
| 2610 | C_entries (c_ext, inf) | 2610 | C_entries (c_ext, inf) |
| 2611 | int c_ext; /* extension of C */ | 2611 | int c_ext; /* extension of C */ |
| 2612 | FILE *inf; /* input file */ | 2612 | FILE *inf; /* input file */ |
| @@ -4429,7 +4429,7 @@ prolog_skip_comment (plb, inf) | |||
| 4429 | * Return the size of the name of the predicate, or 0 if no header | 4429 | * Return the size of the name of the predicate, or 0 if no header |
| 4430 | * was found. | 4430 | * was found. |
| 4431 | */ | 4431 | */ |
| 4432 | int | 4432 | static int |
| 4433 | prolog_pred (s, last) | 4433 | prolog_pred (s, last) |
| 4434 | char *s; | 4434 | char *s; |
| 4435 | char *last; /* Name of last clause. */ | 4435 | char *last; /* Name of last clause. */ |
| @@ -4586,7 +4586,7 @@ Erlang_functions (inf) | |||
| 4586 | * Return the size of the name of the function, or 0 if no function | 4586 | * Return the size of the name of the function, or 0 if no function |
| 4587 | * was found. | 4587 | * was found. |
| 4588 | */ | 4588 | */ |
| 4589 | int | 4589 | static int |
| 4590 | erlang_func (s, last) | 4590 | erlang_func (s, last) |
| 4591 | char *s; | 4591 | char *s; |
| 4592 | char *last; /* Name of last clause. */ | 4592 | char *last; /* Name of last clause. */ |