blob: b7fb909716a040cd1067ccb48312c03bdc82e84b [file] [log] [blame]
/* { dg-do run } */
/* { dg-require-weak "" } */
/* { dg-additional-sources weak-1a.c } */
#include <stdlib.h>
int foo(void) __attribute__((weak));
int foo(void) {
return 0;
}
int main(void) {
if (foo())
exit(0);
else
abort();
}