home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
unixlib
/
src
/
creat.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
261b
|
18 lines
#include "amiga.h"
#include "files.h"
#include <fcntl.h>
#undef creat
int __creat(const char *file, int prot)
{
chkabort();
return open(file, O_WRONLY | O_CREAT | O_TRUNC, prot);
}
int creat(const char *file, int prot)
{
return __creat(file, prot);
}