X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=internals%2F_PDCLIB_glue.h;h=f390dfaa84bf773169b516a89596e46133fa603b;hp=0ffbebc7eb6b97a1fa0d89e488ff5f6dde826931;hb=67cb1ca6543f8c00240597d140675bd1a66df90f;hpb=abe4162e85f29a0ea2b9e7bcc3a1f0a82d56e267 diff --git a/internals/_PDCLIB_glue.h b/internals/_PDCLIB_glue.h index 0ffbebc..f390dfa 100644 --- a/internals/_PDCLIB_glue.h +++ b/internals/_PDCLIB_glue.h @@ -45,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.