Change declaration and use of malloc_options to be more standard, from Tim van

der Molen.
pull/1/head
Nicholas Marriott 2009-11-04 12:41:43 +00:00
parent d8332e6373
commit d2dfbef05a
1 changed files with 5 additions and 1 deletions

6
tmux.c
View File

@ -31,7 +31,7 @@
#include "tmux.h"
#ifdef DEBUG
const char *malloc_options = "AFGJPX";
extern char *malloc_options;
#endif
volatile sig_atomic_t sigwinch;
@ -299,6 +299,10 @@ main(int argc, char **argv)
size_t len;
int nfds, retcode, opt, flags, cmdflags = 0;
#ifdef DEBUG
malloc_options = (char *) "AFGJPX";
#endif
flags = 0;
shellcmd = label = path = NULL;
login_shell = (**argv == '-');