2000-02-17 11: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-03 19:43:30 -08:00
|
|
|
open (const char *file,
|
2017-12-03 18:28:42 -08:00
|
|
|
int flags, ...)
|
2000-02-17 11: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;
|
|
|
|
}
|
|
|
|
|