branch update for HEAD-2003021201
[reactos.git] / lib / msvcrt / io / sopen.c
1 #include <msvcrt/io.h>
2
3
4 int _sopen(char *path, int access, int shflag, int mode)
5 {
6   return _open((path), (access)|(shflag), (mode));
7 }