lib: posix/open: Support M2-Planet.
* lib/posix/open.c (open)[__M2__]: New function.
This commit is contained in:
parent
6ec74a34c4
commit
e354d912ef
|
@ -1,6 +1,6 @@
|
||||||
/* -*-comment-start: "//";comment-end:""-*-
|
/* -*-comment-start: "//";comment-end:""-*-
|
||||||
* GNU Mes --- Maxwell Equations of Software
|
* GNU Mes --- Maxwell Equations of Software
|
||||||
* Copyright © 2016,2017,2018,2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
* Copyright © 2016,2017,2018,2019,2022 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||||
*
|
*
|
||||||
* This file is part of GNU Mes.
|
* This file is part of GNU Mes.
|
||||||
*
|
*
|
||||||
|
@ -29,6 +29,13 @@ _open2 (char const *file_name, int flags)
|
||||||
return _open3 (file_name, flags, mask);
|
return _open3 (file_name, flags, mask);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if __M2__
|
||||||
|
int
|
||||||
|
open (char const *file_name, int flags, int mask)
|
||||||
|
{
|
||||||
|
return _open3 (file_name, flags, mask);
|
||||||
|
}
|
||||||
|
#else // !__M2__
|
||||||
int
|
int
|
||||||
open (char const *file_name, int flags, ...)
|
open (char const *file_name, int flags, ...)
|
||||||
{
|
{
|
||||||
|
@ -44,3 +51,4 @@ open (char const *file_name, int flags, ...)
|
||||||
else
|
else
|
||||||
return _open2 (file_name, flags);
|
return _open2 (file_name, flags);
|
||||||
}
|
}
|
||||||
|
#endif // !__M2__
|
||||||
|
|
Loading…
Reference in a new issue