blob: a8884f6fc81d7312b5d67eab8ca3122021840070 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* PR c++/25632 */
/* { dg-do compile } */
struct sockaddr_un {
char sun_path[1];
};
const unsigned SI_SUN_HEAD_LEN = (long)(((struct sockaddr_un *)0)->sun_path);
int SiGetPeerName ()
{
return SI_SUN_HEAD_LEN;
}
int SiAccept ()
{
return SI_SUN_HEAD_LEN;
}
|