mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Define __dead and __packed.
This commit is contained in:
parent
8580e8c153
commit
bfad5c0171
9
tmux.h
9
tmux.h
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user