summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2004-01-08-ExternInlineRedefine.c
blob: 358a9c28f775640777166f4067215a22ff6a23e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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;
}