]> git.sur5r.net Git - u-boot/blobdiff - tools/mingw_support.h
Introduce generic post-relocation board_r.c
[u-boot] / tools / mingw_support.h
index ee07290b5a2961a76378a06ec5a07b84c566c003..48b8010f0b6beb0faffc5a5451d0ee3e565170d6 100644 (file)
 #define MAP_SHARED     0x01            /* Share changes */
 #define MAP_PRIVATE    0x02            /* Changes are private */
 
+/* File perms */
+#ifndef S_IRGRP
+# define S_IRGRP 0
+#endif
+#ifndef S_IWGRP
+# define S_IWGRP 0
+#endif
+
 /* Windows 64-bit access macros */
 #define LODWORD(x) ((DWORD)((DWORDLONG)(x)))
 #define HIDWORD(x) ((DWORD)(((DWORDLONG)(x) >> 32) & 0xffffffff))