fatbase

portable OpenBSD tools
git clone git://git.2f30.org/fatbase
Log | Files | Refs

commit 16b27c629f3ca5ae75f84a93f2edd197d916b9d2
parent 8ed9c862b2e3d91a62cd38b60b2596ee0e9a2705
Author: sin <sin@2f30.org>
Date:   Tue, 18 Nov 2014 17:30:37 +0000

Do not name parameters in function decls

Diffstat:
Mdiff/util.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/diff/util.h b/diff/util.h @@ -10,8 +10,8 @@ char *fgetln(FILE *, size_t *); void warnc(int, const char *, ...); void vwarnc(int, const char *, va_list); -void errc(int, int code, const char *, ...); -void verrc(int, int code, const char *, va_list); +void errc(int, int, const char *, ...); +void verrc(int, int, const char *, va_list); size_t strlcat(char *, const char *, size_t); size_t strlcpy(char *, const char *, size_t);