You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
255 B

  1. --- a/fileio.c
  2. +++ b/fileio.c
  3. @@ -23,6 +23,10 @@
  4. #include <string.h>
  5. #include <unistd.h>
  6. +#ifndef DEFFILEMODE
  7. +#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)
  8. +#endif
  9. +
  10. #include "def.h"
  11. #include "kbd.h"
  12. #include "pathnames.h"