summaryrefslogtreecommitdiffstats
path: root/include/bool.h
blob: c8cf406ff77505d97d2637d8a8a395b50ab93d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *
 * Copyright (c) 1994
 * Hewlett-Packard Company
 *
 * Permission to use, copy, modify, distribute and sell this software
 * and its documentation for any purpose is hereby granted without fee,
 * provided that the above copyright notice appear in all copies and
 * that both that copyright notice and this permission notice appear
 * in supporting documentation.  Hewlett-Packard Company makes no
 * representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 */

// most systems should have bool defined now (Sun CC 5.0, g++), it is in the
// ANSI standard.

#ifdef OS_HPUX_10
#define bool int
#endif
#define true 1
#define false 0