diff options
author | 2015-11-24 22:09:53 +0000 | |
---|---|---|
committer | 2015-11-24 22:09:53 +0000 | |
commit | 20fd97eb25bb2d548d8d8e80af9478fa7aa5172f (patch) | |
tree | 1faff8edd67eacc66bd866c0e671b15e96d7ef77 /usr.bin/tmux/tmux.c | |
parent | Switch a fprintf to a fatal, and wrap some long lines. (diff) | |
download | wireguard-openbsd-20fd97eb25bb2d548d8d8e80af9478fa7aa5172f.tar.xz wireguard-openbsd-20fd97eb25bb2d548d8d8e80af9478fa7aa5172f.zip |
Remove malloc_options DEBUG bit.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 8a73fc510a3..a3b1e596df1 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.158 2015/11/24 21:52:06 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.159 2015/11/24 22:09:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -34,10 +34,6 @@ #include "tmux.h" -#ifdef DEBUG -extern char *malloc_options; -#endif - struct options *global_options; /* server options */ struct options *global_s_options; /* session options */ struct options *global_w_options; /* window options */ @@ -182,10 +178,6 @@ main(int argc, char **argv) const char *s; int opt, flags, keys; -#ifdef DEBUG - malloc_options = (char *) "AFGJPX"; -#endif - setlocale(LC_TIME, ""); tzset(); |