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
/
gcc.c-torture
/
execute
/
pr33631.c
blob
840fd0dc482c69dd60a50fbe6c3f1495ca801c00
1
typedef
union
2
{
3
int
__lock
;
4
}
pthread_mutex_t
;
5
6
extern
void
abort
(
void
);
7
8
int
main
()
9
{
10
struct
{
int
c
;
pthread_mutex_t m
; }
r
= { .
m
=
0
};
11
if
(
r
.
c
!=
0
)
12
abort
();
13
return
0
;
14
}