From fc864529f587fc4c913d1ad40da41eab2e512521 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 19 Feb 2016 13:11:10 +0000 Subject: [PATCH] Remove malloc_options debug bit (already gone from OpenBSD). --- tmux.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tmux.c b/tmux.c index 700687a5..ff087124 100644 --- a/tmux.c +++ b/tmux.c @@ -32,10 +32,6 @@ #include "tmux.h" -#if defined(DEBUG) && defined(__OpenBSD__) -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 */ @@ -194,10 +190,6 @@ main(int argc, char **argv) const char *s; int opt, flags, keys; -#if defined(DEBUG) && defined(__OpenBSD__) - malloc_options = (char *) "AFGJPX"; -#endif - setlocale(LC_TIME, ""); tzset();