Add ldeptest.

This commit is contained in:
rude
2013-09-25 13:26:30 +02:00
parent 8857f08f1b
commit 9dd116606f
2 changed files with 29 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include <iostream>
#include <zlib.h>
int main(int argc, const char **argv)
{
const char *prefix = " -- ";
std::cout << prefix << "Starting test" << std::endl;
std::cout << prefix << "zlib version: " << zlibVersion() << std::endl;
std::cout << prefix << "Ending test" << std::endl;
return 0;
}