diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-31 22:10:24 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-31 22:10:24 +0000 |
commit | 927e86047786cbdda2bded6d983d952202b08006 (patch) | |
tree | fb52e2960e579dee299815214cb6354c6047d3f7 /source3/tests | |
parent | 7a3cac39a5cbbadcd31d30058d3b513725aa2fa0 (diff) | |
download | samba-927e86047786cbdda2bded6d983d952202b08006.tar.gz samba-927e86047786cbdda2bded6d983d952202b08006.tar.bz2 samba-927e86047786cbdda2bded6d983d952202b08006.zip |
added a simple test to see whether building shared libraries actually
works
(This used to be commit 3aeefbca4f272f57e83e753177ee6e8157b2dbd5)
Diffstat (limited to 'source3/tests')
-rw-r--r-- | source3/tests/shlib.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/tests/shlib.c b/source3/tests/shlib.c new file mode 100644 index 0000000000..761d9fd5c5 --- /dev/null +++ b/source3/tests/shlib.c @@ -0,0 +1,6 @@ +/* a trivial function used to test building shared libraries */ + +int foo(void) +{ + return 1; +} |