a28f374c256956eef24e146517bdfbca294f6dfd
[reactos.git] / lib / msvcrt / io / sopen.c
1 #include <msvcrt/io.h>
2
3
4 /*
5  * @implemented
6  */
7 int _sopen(char *path, int access, int shflag, int mode)
8 {
9   return _open((path), (access)|(shflag), (mode));
10 }