summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2012-05-25 08:28:11 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2012-05-25 08:28:11 +0000
commit901172262afa9f37f2f6ba043f387ecb39830288 (patch)
tree795596f2513c2d598be81a48194e9d6f562f467e /usr.bin/tmux/tmux.h
parent3f0f03c8ee809caa8c707c7f696453806e4779fe (diff)
Simplify logging and just fprintf(stderr, ...) for early errors.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 16e44e6e58c..70165787fd5 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.338 2012/05/23 19:19:40 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.339 2012/05/25 08:28:10 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -2181,8 +2181,7 @@ char *get_proc_name(int, char *);
char *get_proc_cwd(pid_t);
/* log.c */
-void log_open_tty(int);
-void log_open_file(int, const char *);
+void log_open(int, const char *);
void log_close(void);
void printflike1 log_warn(const char *, ...);
void printflike1 log_warnx(const char *, ...);