2000-02-18 03:39:52 +08:00
|
|
|
/* connector for open */
|
|
|
|
|
|
|
|
#include <reent.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
|
|
/* The prototype in <fcntl.h> uses ..., so we must correspond. */
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
int
|
2017-12-04 11:43:30 +08:00
|
|
|
open (const char *file,
|
2017-12-04 10:28:42 +08:00
|
|
|
int flags, ...)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
va_start (ap, flags);
|
|
|
|
ret = _open_r (_REENT, file, flags, va_arg (ap, int));
|
|
|
|
va_end (ap);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|