1 /* Bug 1253, was bug 1609244
10 // bug.c:7: warning 60: function return value mismatch from type 'char near* '
11 // to type 'char generic* unknown type'
12 // bug.c:5: warning 59: function 'foo' must return value
14 PCHAR
foo(void) __reentrant
//this fails
19 PCHAR
bar(void) // this is ok
27 ASSERT(foo() == bar());