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);
SiGetPeerName()11 int SiGetPeerName ()
12 {
13     return SI_SUN_HEAD_LEN;
14 }
SiAccept()15 int SiAccept ()
16 {
17     return SI_SUN_HEAD_LEN;
18 }
19 
20