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
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
compat
/
abi
/
bitfield2.h
blob
09d64162ff3f423bbd1b94fcc791f7d53d6bd230
1
typedef
int
Int
;
2
typedef
signed int
SInt
;
3
typedef
unsigned int
UInt
;
4
5
struct
A
6
{
7
SInt bitS
:
1
;
// signed
8
UInt bitU
:
1
;
// unsigned
9
Int bit
:
1
;
// signedness by -f{signed,unsigned}-bitfields
10
};