summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/log.h
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2006-04-20 12:13:20 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2006-04-20 12:13:20 +0000
commitff51dafc77813d061eda456c01b8f98e5cddda37 (patch)
tree1f2379b0d3f2ea970ac24f0d95f001d71b6f9260 /usr.bin/cvs/log.h
parent8d0545f99cc0d06974614877161d7922e050368f (diff)
change cvs_log() and cvs_vlog() return type to void; OK niallo@.
Diffstat (limited to 'usr.bin/cvs/log.h')
-rw-r--r--usr.bin/cvs/log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/log.h b/usr.bin/cvs/log.h
index 6044110197c..a5490d12b1f 100644
--- a/usr.bin/cvs/log.h
+++ b/usr.bin/cvs/log.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: log.h,v 1.17 2006/03/15 21:34:59 niallo Exp $ */
+/* $OpenBSD: log.h,v 1.18 2006/04/20 12:13:19 xsa Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -59,8 +59,8 @@
void cvs_log_init(u_int, u_int);
void cvs_log_cleanup(void);
int cvs_log_filter(u_int, u_int);
-int cvs_log(u_int, const char *, ...) __attribute__((format(printf, 2, 3)));
-int cvs_vlog(u_int, const char *, va_list);
+void cvs_log(u_int, const char *, ...) __attribute__((format(printf, 2, 3)));
+void cvs_vlog(u_int, const char *, va_list);
int cvs_printf(const char *, ...) __attribute__((format(printf, 1, 2)));
void fatal(const char *, ...) __dead __attribute__((format(printf, 1,2)));