aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ctags/yacc.c
diff options
context:
space:
mode:
authorDavid Malone <dwmalone@FreeBSD.org>2002-07-28 15:50:38 +0000
committerDavid Malone <dwmalone@FreeBSD.org>2002-07-28 15:50:38 +0000
commitc10b37bf7a99111de3b82f73d34c7616d7695500 (patch)
tree8e29fe08965664418f6eba8ec0af45ce3e3a1136 /usr.bin/ctags/yacc.c
parent8015edeebbd53f8fe3a444bdf469584a6c0bc80c (diff)
downloadsrc-c10b37bf7a99111de3b82f73d34c7616d7695500.tar.gz
src-c10b37bf7a99111de3b82f73d34c7616d7695500.zip
ANSIify function definitions to avoid a warning.
Notes
Notes: svn path=/head/; revision=100822
Diffstat (limited to 'usr.bin/ctags/yacc.c')
-rw-r--r--usr.bin/ctags/yacc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ctags/yacc.c b/usr.bin/ctags/yacc.c
index 9a1d9461aef0..e0e0daba6687 100644
--- a/usr.bin/ctags/yacc.c
+++ b/usr.bin/ctags/yacc.c
@@ -51,7 +51,7 @@ __FBSDID("$FreeBSD$");
* find the yacc tags and put them in.
*/
void
-y_entries()
+y_entries(void)
{
int c;
char *sp;
@@ -123,7 +123,7 @@ y_entries()
* throw away lines up to the next "\n%%\n"
*/
void
-toss_yysec()
+toss_yysec(void)
{
int c; /* read character */
int state;