diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-24 22:09:54 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-24 22:09:54 +0000 |
commit | a98518a8100f7d1b9c027e790ec5a81aa6a4bd79 (patch) | |
tree | 2c7abf40b6fea1271cefe8b3471c6cf380c68843 /usr.bin | |
parent | 9bd79540bd5c1fc8fa1bcdcb92aa4f7b1d781d20 (diff) |
Remove malloc_options DEBUG bit.
Diffstat (limited to 'usr.bin')
-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(); |