X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=platform%2Fgandr%2Ffunctions%2Fstdio%2F_PDCLIB_fileops.c;h=1fd6678e931c099eb9db2cab16127de1201423fc;hp=9dff0ce00e71ecd7e2145593d2955ff82c6224c1;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=c83b63d8752d32b5fe82aa2b1c3b570eef531436 diff --git a/platform/gandr/functions/stdio/_PDCLIB_fileops.c b/platform/gandr/functions/stdio/_PDCLIB_fileops.c index 9dff0ce..1fd6678 100644 --- a/platform/gandr/functions/stdio/_PDCLIB_fileops.c +++ b/platform/gandr/functions/stdio/_PDCLIB_fileops.c @@ -7,11 +7,11 @@ #ifndef REGTEST #include #include -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" #include #include -static bool readf( _PDCLIB_fd_t fd, void * buf, size_t length, +static bool readf( _PDCLIB_fd_t fd, void * buf, size_t length, size_t * numBytesRead ) { int rv = gd_read(fd.pointer, buf, length, numBytesRead ); @@ -19,7 +19,7 @@ static bool readf( _PDCLIB_fd_t fd, void * buf, size_t length, return rv >= 0; } -static bool writef( _PDCLIB_fd_t fd, const void * buf, size_t length, +static bool writef( _PDCLIB_fd_t fd, const void * buf, size_t length, size_t * numBytesWritten ) { int rv = gd_write(fd.pointer, buf, length, numBytesWritten ); @@ -30,7 +30,7 @@ static bool writef( _PDCLIB_fd_t fd, const void * buf, size_t length, static bool seekf( _PDCLIB_fd_t fd, int_fast64_t offset, int whence, int_fast64_t* newPos ) { - int rv = gd_seek( fd.pointer, offset, whence, &newPos ); + int rv = gd_seek( fd.pointer, offset, whence, newPos ); return rv >= 0; } @@ -50,7 +50,7 @@ const _PDCLIB_fileops_t _PDCLIB_fileops = { #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {