diff options
author | sin <sin@2f30.org> | 2014-03-08 16:48:28 +0000 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-03-08 16:49:07 +0000 |
commit | 27326b71197a4f73e422f388d5aa3d1b3ea24bac (patch) | |
tree | 69d0398dc6e648eaa5d226330d4da28192d81873 /util | |
parent | a7b6c6f0751fb34e6b8ed344de0af6dbf42fdb5d (diff) |
Mark venprintf() as static explicitly, not just in the decl
Diffstat (limited to 'util')
-rw-r--r-- | util/eprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/eprintf.c b/util/eprintf.c index 8dda0c8..8da0651 100644 --- a/util/eprintf.c +++ b/util/eprintf.c @@ -4,7 +4,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> - #include "../util.h" static void venprintf(int, const char *, va_list); @@ -29,7 +28,7 @@ enprintf(int status, const char *fmt, ...) va_end(ap); } -void +static void venprintf(int status, const char *fmt, va_list ap) { vfprintf(stderr, fmt, ap); |