diff options
author | Tim Rice <tim@multitalents.net> | 2004-01-27 01:02:17 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2004-01-27 01:02:17 +0100 |
commit | ba1c2b82c47c6ebf6b79c639bc71e1d6f7dd5d26 (patch) | |
tree | f0180301490d2d933851c96f5d1c9207e99f561f /defines.h | |
parent | 20040126 (diff) | |
download | openssh-ba1c2b82c47c6ebf6b79c639bc71e1d6f7dd5d26.tar.xz openssh-ba1c2b82c47c6ebf6b79c639bc71e1d6f7dd5d26.zip |
[defines.h] Add defines for HFIXEDSZ and T_SIG
Diffstat (limited to '')
-rw-r--r-- | defines.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.107 2004/01/08 12:32:04 dtucker Exp $ */ +/* $Id: defines.h,v 1.108 2004/01/27 00:02:17 tim Exp $ */ /* Constants */ @@ -133,6 +133,14 @@ including rpc/rpc.h breaks Solaris 6 #define __unused #endif +#ifndef HFIXEDSZ +#define HFIXEDSZ 12 +#endif + +#ifndef T_SIG +#define T_SIG 24 +#endif + /* Types */ /* If sys/types.h does not supply intXX_t, supply them ourselves */ |