2008-01-28 16:37:16 -05:00
|
|
|
/* source: mytypes.h */
|
2014-11-16 15:53:36 -05:00
|
|
|
/* Copyright Gerhard Rieger */
|
2008-01-27 07:00:08 -05:00
|
|
|
/* Published under the GNU General Public License V.2, see file COPYING */
|
|
|
|
|
|
|
|
#ifndef __mytypes_h_included
|
|
|
|
#define __mytypes_h_included 1
|
|
|
|
|
|
|
|
/* some types and macros I miss in C89 */
|
|
|
|
|
2014-11-16 15:53:36 -05:00
|
|
|
#ifndef HAVE_TYPE_BOOL
|
|
|
|
# undef bool
|
2008-01-27 07:00:08 -05:00
|
|
|
typedef enum { false, true } bool;
|
2014-11-16 15:53:36 -05:00
|
|
|
#endif
|
2008-01-27 07:00:08 -05:00
|
|
|
|
2014-11-16 15:53:36 -05:00
|
|
|
#ifndef Min
|
2008-01-27 07:00:08 -05:00
|
|
|
#define Min(x,y) ((x)<=(y)?(x):(y))
|
2014-11-16 15:53:36 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef Max
|
2008-01-27 07:00:08 -05:00
|
|
|
#define Max(x,y) ((x)>=(y)?(x):(y))
|
2014-11-16 15:53:36 -05:00
|
|
|
#endif
|
2008-01-27 07:00:08 -05:00
|
|
|
|
|
|
|
#define SOCKADDR_MAX UNIX_PATH_MAX
|
|
|
|
|
|
|
|
#endif /* __mytypes_h_included */
|