]> pd.if.org Git - pdclib/blobdiff - platform/gandr/functions/stdio/_PDCLIB_fileops.c
PDCLib includes with quotes, not <>.
[pdclib] / platform / gandr / functions / stdio / _PDCLIB_fileops.c
index 9dff0ce00e71ecd7e2145593d2955ff82c6224c1..1fd6678e931c099eb9db2cab16127de1201423fc 100644 (file)
@@ -7,11 +7,11 @@
 #ifndef REGTEST
 #include <stdio.h>
 #include <stdint.h>
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 #include <errno.h>
 #include <gd_bal.h>
 
-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 )
 {