]> pd.if.org Git - pdclib/blobdiff - internals/_PDCLIB_glue.h
Added close().
[pdclib] / internals / _PDCLIB_glue.h
index f19e25071a7f8cb495bb88278b1559f8de692ade..f390dfaa84bf773169b516a89596e46133fa603b 100644 (file)
@@ -1,7 +1,5 @@
 /* $Id$ */
 
-/* Release $Name$ */
-
 /* OS glue functions declaration <_PDCLIB_glue.h>
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -35,7 +33,7 @@ void * _PDCLIB_allocpages( int n );
 /* A system call that opens a file identified by name in a given mode, and
    returns a file descriptor uniquely identifying that file.
 */
-_PDCLIB_fd_t _PDCLIB_open( char const * const filename, int mode );
+_PDCLIB_fd_t _PDCLIB_open( char const * const filename, unsigned int mode );
 
 /* A system call that writes n characters to a file identified by given file
    descriptor. Return the number of characters written.
@@ -47,8 +45,10 @@ _PDCLIB_size_t _PDCLIB_write( _PDCLIB_fd_t fd, char const * buffer, _PDCLIB_size
 */
 _PDCLIB_size_t _PDCLIB_read( _PDCLIB_fd_t fd, char * buffer, _PDCLIB_size_t n );
 
-/* A system call that closes a file identified by given file descriptor. */
-void _PDCLIB_close( _PDCLIB_fd_t fd );
+/* A system call that closes a file identified by given file descriptor. Return
+   zero on success, non-zero otherwise.
+*/
+int _PDCLIB_close( _PDCLIB_fd_t fd );
 
 /* A system call that removes a file identified by name. Return zero on success,
    non-zero otherwise.