diff options
Diffstat (limited to 'Tests/ObjectLibrary/LinkObjects/d_obj.c')
-rw-r--r-- | Tests/ObjectLibrary/LinkObjects/d_obj.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/ObjectLibrary/LinkObjects/d_obj.c b/Tests/ObjectLibrary/LinkObjects/d_obj.c new file mode 100644 index 0000000..d14ce66 --- /dev/null +++ b/Tests/ObjectLibrary/LinkObjects/d_obj.c @@ -0,0 +1,8 @@ +#ifndef OBJD +# error "OBJD is not defined, but should be" +#endif +extern int d_dep(void); +int d_obj(void) +{ + return d_dep(); +} |