diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:11:25 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 20:11:25 +0000 |
commit | be53d7f298bb81297ff0d186f9ddb585a2e57198 (patch) | |
tree | f461c861805dc1694884e772a7c07bfe64f14a3d /tmux.c | |
parent | 0d5ad358ae3bc80cbf226f5aef5790ca1e1f430c (diff) | |
download | rtmux-be53d7f298bb81297ff0d186f9ddb585a2e57198.tar.gz rtmux-be53d7f298bb81297ff0d186f9ddb585a2e57198.tar.bz2 rtmux-be53d7f298bb81297ff0d186f9ddb585a2e57198.zip |
More Sun OS crap.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.59 2008-06-18 19:34:50 nicm Exp $ */ +/* $Id: tmux.c,v 1.60 2008-06-18 20:11:25 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -56,6 +56,10 @@ int be_quiet; void sighandler(int); __dead void usage(void); +#ifdef NO_PROGNAME +const char *__progname = "tmux"; +#endif + __dead void usage(void) { |