# HG changeset patch # User ohnobinki@localhost # Date 2009-02-10 23:12:15 # Node ID 2c72cec363fac6b834d42e7e40791b2303c870e2 # Parent 7df3f36d8160e727a81cd34af17eed45636e6fe2 made the client call a function in the shared space just to test linking diff --git a/src/client/distren.c b/src/client/distren.c --- a/src/client/distren.c +++ b/src/client/distren.c @@ -21,5 +21,8 @@ int main(int argc, char *argv[]) { + //just prove that linking to the shared lib werkz + genericfunc(); + return 0; } diff --git a/src/common/options.h b/src/common/options.h --- a/src/common/options.h +++ b/src/common/options.h @@ -17,3 +17,9 @@ along with distren. If not, see . */ +#ifndef _DISTREN_OPTIONS_H +#define _DISTREN_OPTIONS_H + +int genericfunc(); + +#endif