diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 20:36:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 20:36:08 +0000 |
commit | bfad5c0171ebd8c85f1757b36ed333faec30a4a5 (patch) | |
tree | 2099c536c80e467547ee47b9165c6d5a7c4e6851 | |
parent | 8580e8c15390af8dffd37c9c930c0f11cbb2ec37 (diff) | |
download | rtmux-bfad5c0171ebd8c85f1757b36ed333faec30a4a5.tar.gz rtmux-bfad5c0171ebd8c85f1757b36ed333faec30a4a5.tar.bz2 rtmux-bfad5c0171ebd8c85f1757b36ed333faec30a4a5.zip |
Define __dead and __packed.
-rw-r--r-- | tmux.h | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.61 2007-10-19 11:10:35 nicm Exp $ */ +/* $Id: tmux.h,v 1.62 2007-10-19 20:36:08 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -33,6 +33,13 @@ extern cc_t ttydefchars[]; extern char *__progname; +#ifndef __dead +#define __dead __attribute__ ((__noreturn__)) +#endif +#ifndef __packed +#define __packed __attribute__ ((__packed__)) +#endif + #define MAXNAMELEN 32 #define MAXTITLELEN 192 |