]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/seek.c
Fixed prototype warnings.
[pdclib] / platform / example / functions / _PDCLIB / seek.c
index b28de731d4a8189e854bc7e6618c98512524aa25..755abe2cb1eb9393a943356007f9071a69b9f2de 100644 (file)
@@ -53,7 +53,7 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of
             _PDCLIB_errno = _PDCLIB_ERROR;
             break;
         default:
-            /* This should probably be something like EUNKNOWN. */
+            /* This should be something like EUNKNOWN. */
             _PDCLIB_errno = _PDCLIB_ERROR;
             break;
     }
@@ -63,7 +63,7 @@ _PDCLIB_int64_t _PDCLIB_seek( struct _PDCLIB_file_t * stream, _PDCLIB_int64_t of
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
     /* Testing covered by ftell.c */
     return TEST_RESULTS;