view gcc/testsuite/g++.dg/other/pr25632.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR c++/25632  */

/* { dg-do compile } */

__extension__ typedef __INTPTR_TYPE__ intptr_t;

struct sockaddr_un {
    char sun_path[1];
};
const unsigned SI_SUN_HEAD_LEN = (intptr_t)(((struct sockaddr_un *)0)->sun_path);
int SiGetPeerName ()
{
    return SI_SUN_HEAD_LEN;
}
int SiAccept ()
{
    return SI_SUN_HEAD_LEN;
}