Testcase for PR202
authorChris Lattner <sabre@nondot.org>
Thu, 8 Jan 2004 17:15:09 +0000 (17:15 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 8 Jan 2004 17:15:09 +0000 (17:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10715 91177308-0d34-0410-b5e6-96231b3b80d8

test/CFrontend/2004-01-08-ExternInlineRedefine.c [new file with mode: 0644]

diff --git a/test/CFrontend/2004-01-08-ExternInlineRedefine.c b/test/CFrontend/2004-01-08-ExternInlineRedefine.c
new file mode 100644 (file)
index 0000000..27613ca
--- /dev/null
@@ -0,0 +1,12 @@
+
+extern __inline long int
+__strtol_l (int a)
+{
+  return 0;
+}
+
+long int
+__strtol_l (int a)
+{
+  return 0;
+}