Imported Upstream version 2.9.0
[debian/cc1111] / support / regression / tests / bug-1805702.c
1 /* bug-1805702.c
2  */
3
4 #include <testfwk.h>
5
6 int foo;
7 extern int foo;
8
9 void
10 test(void)
11 {
12   foo = 10;
13
14   ASSERT(foo == 10);
15 }
16
17 /* compile time check for compiler defined functions (cdef) */
18
19 float __fsmul (float, float);
20
21 float __fsmul (float a1, float a2) {
22   /* just for tesing... */
23   return (a1 + a2);
24 }