summaryrefslogtreecommitdiff
path: root/test/FrontendC/2004-01-08-ExternInlineRedefine.c
blob: 4366b9b5659333f973cb7be41f62acd1092f2397 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null


extern __inline long int
__strtol_l (int a)
{
  return 0;
}

long int
__strtol_l (int a)
{
  return 0;
}