You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
165 B

// RUN: %clang_cc1 -std=gnu89 -emit-llvm %s -o /dev/null
extern __inline long int
__strtol_l (int a)
{
return 0;
}
long int
__strtol_l (int a)
{
return 0;
}