This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/close.c

14 lines
191 B
C

#include <fcntl.h>
#include <io.h>
void main()
{
int handle;
handle = open( "file", O_RDONLY );
if( handle != -1 ) {
/* process file */
close( handle );
}
}