home *** CD-ROM | disk | FTP | other *** search
- /* The original djgpp umask function returns 0644, which is the
- inverse of what we really want. This now returns 022, which means
- that files are created with no write permission for group or other,
- which is the normal value for a UNIX machine. */
- int
- umask(int mode)
- {
- return 022;
- }
-