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/creat.c

17 lines
230 B
C

#include <sys/types.h>
#include <sys/stat.h>
#include <io.h>
void main()
{
int handle;
handle = creat( "file", S_IWRITE | S_IREAD );
if( handle != -1 ) {
/* process file */
close( handle );
}
}