libc/libgloss/m32r/open.c

11 lines
171 B
C
Raw Normal View History

2000-03-17 23:48:54 +01:00
#include <sys/types.h>
#include <sys/stat.h>
#include "syscall.h"
#include "eit.h"
int
_open (const char *path, int flags)
{
return TRAP0 (SYS_open, path, flags, 0);
}