Testcase for PR202

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10715 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-01-08 17:15:09 +00:00
parent 329c1c6c94
commit e6b72a2518

View File

@ -0,0 +1,12 @@
extern __inline long int
__strtol_l (int a)
{
return 0;
}
long int
__strtol_l (int a)
{
return 0;
}