source:
trunk/kLdr/testcase/tst-1.c
Last change on this file was 2, checked in by , 18 years ago | |
---|---|
|
|
File size: 315 bytes |
Rev | Line | |
---|---|---|
[2] | 1 | #include "tst.h" |
2 | #include <stdio.h> | |
3 | ||
4 | MY_IMPORT(int) FuncA(void); | |
5 | MY_IMPORT(int) FuncB(void); | |
6 | MY_IMPORT(int) FuncC(void); | |
7 | ||
8 | int main() | |
9 | { | |
10 | printf("graph:\n" | |
11 | " tst-1 -> a -> d\n" | |
12 | " b -> d\n" | |
13 | " c -> d\n"); | |
14 | return FuncA() + FuncB() + FuncC(); | |
15 | } |
Note:
See TracBrowser
for help on using the repository browser.