summaryrefslogtreecommitdiff
path: root/tikzit-old/src/gtk/stat.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-05-07 13:21:59 +0200
committerAleks Kissinger <aleks0@gmail.com>2018-05-07 13:21:59 +0200
commitd7f0b3e19fddc89fd22692847e9d840023d2b7f3 (patch)
tree762f48cb637eef334cf7f6320fe13b7988bc53e3 /tikzit-old/src/gtk/stat.h
parentb00c5250d7a56b6d20980d89cf331a114fdfdee0 (diff)
GPLed
Diffstat (limited to 'tikzit-old/src/gtk/stat.h')
-rw-r--r--tikzit-old/src/gtk/stat.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/tikzit-old/src/gtk/stat.h b/tikzit-old/src/gtk/stat.h
deleted file mode 100644
index a9829ae..0000000
--- a/tikzit-old/src/gtk/stat.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#include <sys/stat.h>
-#if STAT_MACROS_BROKEN
-# undef S_ISDIR
-#endif
-#if !defined S_ISDIR && defined S_IFDIR
-# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
-#endif
-#if !S_IRUSR && S_IREAD
-# define S_IRUSR S_IREAD
-#endif
-#if !S_IRUSR
-# define S_IRUSR 00400
-#endif
-#if !S_IWUSR && S_IWRITE
-# define S_IWUSR S_IWRITE
-#endif
-#if !S_IWUSR
-# define S_IWUSR 00200
-#endif
-#if !S_IXUSR && S_IEXEC
-# define S_IXUSR S_IEXEC
-#endif
-#if !S_IXUSR
-# define S_IXUSR 00100
-#endif