diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-02-19 13:11:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2016-02-19 13:11:10 +0000 |
commit | fc864529f587fc4c913d1ad40da41eab2e512521 (patch) | |
tree | 355e822e8d2b6a6092921e9d3d7e760f09c25800 /tmux.c | |
parent | 782dd941da97802108628fb068f5462f4c78f431 (diff) | |
download | rtmux-fc864529f587fc4c913d1ad40da41eab2e512521.tar.gz rtmux-fc864529f587fc4c913d1ad40da41eab2e512521.tar.bz2 rtmux-fc864529f587fc4c913d1ad40da41eab2e512521.zip |
Remove malloc_options debug bit (already gone from OpenBSD).
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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(); |