File tree 4 files changed +5
-8
lines changed
4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 13
13
14
14
# Ubuntu
15
15
# TOOLPATH=/usr/bin/
16
- # CROSS=$(TOOLPATH)/i586-mingw32msvc -
16
+ # CROSS=$(TOOLPATH)/i686-w64-mingw32 -
17
17
18
18
# OpenBSD
19
19
# TOOLPATH=/usr/local/mingw32/bin/
Original file line number Diff line number Diff line change 65
65
66
66
#include "../tools/getoptv.h"
67
67
#include "../tools/number.h"
68
- #include "../tools/chars.h"
69
68
#include "../tools/types.h"
70
69
#include "../tools/error.h"
71
70
#include "../tools/files.h"
Original file line number Diff line number Diff line change 15
15
*
16
16
*--------------------------------------------------------------------*/
17
17
18
- #ifndef isblank
19
- #ifndef __CYGWIN__
20
- #define isblank (c ) ((char)(c) == ' ') || ((char)(c) == '\t')
21
- #endif
22
- #endif
23
-
24
18
#ifndef nobreak
25
19
#define nobreak (c ) ((char)(c) != '\n') && ((int)(c) != EOF)
26
20
#endif
Original file line number Diff line number Diff line change 62
62
63
63
#ifdef WIN32
64
64
#define FILE_FILEMODE S_IREAD|S_IWRITE
65
+ #ifndef S_IRGRP
65
66
#define S_IRGRP 0
67
+ #endif
68
+ #ifndef S_IROTH
66
69
#define S_IROTH 0
70
+ #endif
67
71
#else
68
72
#define FILE_FILEMODE S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH
69
73
#define O_BINARY 0
You can’t perform that action at this time.
0 commit comments