Added linux386 platform.

This commit is contained in:
dtrg
2007-04-21 23:02:11 +00:00
parent 42c2cdb985
commit 3756b414de
28 changed files with 1118 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <unistd.h>
#include "libsys.h"
int creat(const char* filename, int mode)
{
return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
}