summaryrefslogtreecommitdiff
path: root/vpath.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-05-01 15:52:58 -0400
committerPaul Smith <psmith@gnu.org>2016-05-21 16:22:25 -0400
commitba8383efd8b1fded117f2587c78c40b28fe4e016 (patch)
tree2aabe327f94e1b9a7b3ff1fb6fc6629775d543b9 /vpath.c
parent6f7fb050b4af7335de259f570b75bf6c217eb1cd (diff)
Fixes for enhanced GCC warnings.
Move function prototypes into header files and out of .c files. Use void argument lists for functions that accept no args. Remove unused macros. Make private functions static. Align types with printf format characters.
Diffstat (limited to 'vpath.c')
-rw-r--r--vpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vpath.c b/vpath.c
index 2f1dafd5..0c7dce35 100644
--- a/vpath.c
+++ b/vpath.c
@@ -52,7 +52,7 @@ static struct vpath *gpaths;
variable. */
void
-build_vpath_lists ()
+build_vpath_lists (void)
{
register struct vpath *new = 0;
register struct vpath *old, *nexto;