diff options
Diffstat (limited to 'Tests/ObjectLibrary/LinkObjects/e_lib.c')
-rw-r--r-- | Tests/ObjectLibrary/LinkObjects/e_lib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/ObjectLibrary/LinkObjects/e_lib.c b/Tests/ObjectLibrary/LinkObjects/e_lib.c new file mode 100644 index 0000000..9bb3a44 --- /dev/null +++ b/Tests/ObjectLibrary/LinkObjects/e_lib.c @@ -0,0 +1,5 @@ +extern int e_obj(void); +int e_lib(void) +{ + return e_obj(); +} |