home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5 (Alt)
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
src
/
creat.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-01-04
|
181 b
|
10 lines
#include "amiga.h"
#include "files.h"
#include <fcntl.h>
int __creat(const char *file, int prot)
{
__chkabort();
return __open(file, O_WRONLY | O_CREAT | O_TRUNC, prot);
}