blob: 358a9c28f775640777166f4067215a22ff6a23e3 [file] [log] [blame]
Eric Christophera11d1292011-07-26 00:57:50 +00001// RUN: %clang_cc1 -std=gnu89 -emit-llvm %s -o /dev/null
2
3
4extern __inline long int
5__strtol_l (int a)
6{
7 return 0;
8}
9
10long int
11__strtol_l (int a)
12{
13 return 0;
14}