diff options
Diffstat (limited to 'test cases/linuxlike/4 extdep static lib/lib.c')
-rw-r--r-- | test cases/linuxlike/4 extdep static lib/lib.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test cases/linuxlike/4 extdep static lib/lib.c b/test cases/linuxlike/4 extdep static lib/lib.c new file mode 100644 index 0000000..bbda9aa --- /dev/null +++ b/test cases/linuxlike/4 extdep static lib/lib.c @@ -0,0 +1,8 @@ +#include<zlib.h> + +int statlibfunc(void) { + void * something = deflate; + if(something != 0) + return 0; + return 1; +} |