X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fseek.c;h=cafcee8ddc2cfd64db234c335ca00e9754667321;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hp=66c328bbd0eecded9703cd96cf69f95d8639a44f;hpb=b1fc26afebd4d557ff89a44bc21767a8704c3809;p=pdclib diff --git a/platform/example/functions/_PDCLIB/seek.c b/platform/example/functions/_PDCLIB/seek.c index 66c328b..cafcee8 100644 --- a/platform/example/functions/_PDCLIB/seek.c +++ b/platform/example/functions/_PDCLIB/seek.c @@ -6,7 +6,9 @@ #include -#include <_PDCLIB_glue.h> +#ifndef REGTEST + +#include "_PDCLIB_glue.h" #include "/usr/include/errno.h" @@ -55,8 +57,11 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of return EOF; } +#endif + #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -65,4 +70,3 @@ int main( void ) } #endif -