diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-10-17 17:13:26 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-10-17 17:13:26 -0700 |
commit | e41b69beaf51a725a98b1ba4480751333b24a06f (patch) | |
tree | b40ec2308741a20be270f3f50f085fe807a7c3a0 /test/elftest.c | |
parent | d83fb7e3388e516263fceaba27f2d36450bdf74a (diff) | |
download | nasm-e41b69beaf51a725a98b1ba4480751333b24a06f.tar.gz nasm-e41b69beaf51a725a98b1ba4480751333b24a06f.tar.bz2 nasm-e41b69beaf51a725a98b1ba4480751333b24a06f.zip |
Test and Makefile rules for 32- and 64-bit ELF shared libraries
Add Makefile rules for the 32-bit ELF shared library test, and add a
64-bit ELF shared library test (still work in progress.)
Diffstat (limited to 'test/elftest.c')
-rw-r--r-- | test/elftest.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/elftest.c b/test/elftest.c index 8dd57a2..42b3f7e 100644 --- a/test/elftest.c +++ b/test/elftest.c @@ -33,4 +33,6 @@ int main(void) printf("These pointers should be equal: %p and %p\n", &greet, textptr); printf("So should these: %p and %p\n", selfptr, &selfptr); + + return 0; } |