source: trunk/kLdr/testcase/tst-0.c@ 2875

Last change on this file since 2875 was 2873, checked in by bird, 19 years ago

made tst-0 a bare program without any system dependencies (except on nt).

File size: 221 bytes
Line 
1#include "tst.h"
2
3MY_IMPORT(int) FuncA(void);
4MY_IMPORT(int) FuncB(void);
5MY_IMPORT(int) FuncC(void);
6
7int main()
8{
9 unsigned u;
10 u = FuncA() | FuncB() | FuncC();
11 return u == 0x42424242 ? 0 : 1;
12}
13
Note: See TracBrowser for help on using the repository browser.