Sign in
gnu
/
gcc.git
/
09a3da82125e07da504136841d577f103aa4ea13
/
.
/
gcc
/
testsuite
/
c-c++-common
/
analyzer
/
error-3.c
blob: b6ab6c8410ecb8afb84483a9d0f116011b0ab789 [
file
] [
log
] [
blame
]
/* Verify that we gracefully handle error functions that don't match
the signature of GNU's <error.h>. */
extern
void
error
(
void
);
extern
void
error_at_line
(
void
);
void
test_1
(
void
)
{
error
();
error_at_line
();
}