Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2004-01-08-ExternInlineRedefine.c
blobb3907ee9933b90abaea3801df80e21a328ae32ab
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
4 extern __inline long int
5 __strtol_l (int a)
7 return 0;
10 long int
11 __strtol_l (int a)
13 return 0;