mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 01:27:11 +02:00
14 lines
292 B
C
14 lines
292 B
C
#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include "fugue/fugue.h"
|
|
|
|
int open(char const *path, int flags, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, flags);
|
|
mode_t mode = va_arg(args, int);
|
|
va_end(args);
|
|
|
|
/* Standard open() is the Fugue filesystem only */
|
|
return fugue_open(path, flags, mode);
|
|
}
|