update for HEAD-2003091401
[reactos.git] / lib / crtdll / 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 }