rt_gccstream/gcc/testsuite/gcc.dg/Wpointer-sign-pedantic-no.c

10 lines
189 B
C

/* This is from PR c/25892. See Wpointer-sign.c for more details. */
/* { dg-options "-Wno-pointer-sign -pedantic" } */
void foo(unsigned long* ulp);
void bar(long* lp) {
foo(lp);
}