Merge branch 'master' of github.com:markpizz/simh

This commit is contained in:
Mark Pizzolato 2012-04-17 08:46:33 -07:00
commit f206facbd0

View file

@ -1652,6 +1652,9 @@ else
#ifdef O_LARGEFILE
mode |= O_LARGEFILE;
#endif
#ifdef O_DSYNC
mode |= O_DSYNC;
#endif
return (FILE *)((long)open (rawdevicename, mode, 0));
}