comparison includes.h @ 108:10f4d3319780

- added circular buffering for channels - added stderr support for the client - cleaned up a bunch of "unused" warnings, duplicated header definitions - added exit-status support for the client
author Matt Johnston <matt@ucc.asn.au>
date Thu, 26 Aug 2004 13:16:40 +0000
parents b0316ce64e4b
children 9a1dc9bc17d7
comparison
equal deleted inserted replaced
107:d3eb1fa8484e 108:10f4d3319780
126 126
127 #ifndef LOG_AUTHPRIV 127 #ifndef LOG_AUTHPRIV
128 #define LOG_AUTHPRIV LOG_AUTH 128 #define LOG_AUTHPRIV LOG_AUTH
129 #endif 129 #endif
130 130
131 /* so we can avoid warnings about unused params (ie in signal handlers etc) */
132 #ifdef UNUSED
133 #elif defined(__GNUC__)
134 # define UNUSED(x) UNUSED_ ## x __attribute__((unused))
135 #elif defined(__LCLINT__)
136 # define UNUSED(x) /*@unused@*/ x
137 #else
138 # define UNUSED(x) x
139 #endif
140
131 #endif /* _INCLUDES_H_ */ 141 #endif /* _INCLUDES_H_ */