Updated to work with the new libmon-less setup.

This commit is contained in:
dtrg
2007-04-21 22:59:42 +00:00
parent 04860c08a8
commit 201c66879d
24 changed files with 357 additions and 316 deletions

14
plat/pc86/libsys/open.c Normal file
View File

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