xref: /386bsd/usr/src/lib/libg++/g++-include/bool.h (revision a2142627)
1 
2 #ifndef _bool_h
3 #ifdef __GNUG__
4 #pragma once
5 #endif
6 #define _bool_h 1
7 
8 enum bool { FALSE = 0, TRUE = 1 };
9 
10 #endif
11