define DEFFILEMODE when system headers don't

This commit is contained in:
Nikita Travkin 2022-11-02 14:34:45 +01:00 committed by Mis012
parent f2be3ef820
commit e88709cf9d

View file

@ -11,6 +11,10 @@
#include <stdio.h>
#include <sys/stat.h>
#ifndef DEFFILEMODE
#define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)/* 0666*/
#endif
GtkWidget *window;
// standard Gtk Application stuff, more or less