Added cpm platform.

This commit is contained in:
dtrg
2007-04-27 22:42:41 +00:00
parent 013f58f94e
commit be8baf3da6
31 changed files with 1140 additions and 9 deletions

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

@@ -0,0 +1,14 @@
/* $Source$
* $State$
* $Revision$
*/
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
int open(const char* path, int access, ...)
{
errno = EACCES;
return -1;
}