X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=opt%2Fnothread%2Ftss_set.c;h=da02b04be24b07aedb84e0d2e71dc380d37e8d16;hb=3a2027b97e7a6c7ecb9fcd4c24b4c74459faddbc;hp=7de3ec5b775527d66e84f01174ce661a81b4d94a;hpb=bb22ff7ecd9fe8f4641484df12ad629cd8ee27ac;p=pdclib.old diff --git a/opt/nothread/tss_set.c b/opt/nothread/tss_set.c index 7de3ec5..da02b04 100644 --- a/opt/nothread/tss_set.c +++ b/opt/nothread/tss_set.c @@ -1,3 +1,4 @@ +#ifndef REGTEST #include int tss_set(tss_t key, void *val) @@ -5,6 +6,7 @@ int tss_set(tss_t key, void *val) key.self->value = val; return thrd_success; } +#endif #ifdef TEST #include <_PDCLIB_test.h> @@ -15,4 +17,4 @@ int main( void ) return TEST_RESULTS; } -#endif \ No newline at end of file +#endif