repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
pr25632.C
blob
e66ae3b51ec39ff291f6ef08774edcdd80cd1026
1
/* PR c++/25632 */
2
3
/* { dg-do compile } */
4
5
__extension__ typedef __INTPTR_TYPE__ intptr_t;
6
7
struct sockaddr_un {
8
char sun_path[1];
9
};
10
const unsigned SI_SUN_HEAD_LEN = (intptr_t)(((struct sockaddr_un *)0)->sun_path);
11
int SiGetPeerName ()
12
{
13
return SI_SUN_HEAD_LEN;
14
}
15
int SiAccept ()
16
{
17
return SI_SUN_HEAD_LEN;
18
}
19