repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
lib
/
libg++
/
g++-include
/
bool.h
blob
e843aa9c471e818620079938020469293dd243d2
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