Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / msvcrt / io / sopen.c
index e98fa85..7265f70 100644 (file)
@@ -5,8 +5,3 @@ int _sopen(char *path, int access, int shflag, int mode)
 {
   return _open((path), (access)|(shflag), (mode));
 }
-
-int _wsopen(wchar_t *path, int access, int shflag, int mode)
-{
-  return _wopen((path), (access)|(shflag), (mode));
-}