File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
- Fri Jul 17 06:01:12 2001 Minero Aoki <aamine@loveruby.net>
1
+ Tue Jul 17 11:44:40 2001 Usaku Nakamura <usa@osb.att.ne.jp>
2
+
3
+ * ruby.h: enable volatile directive with VC++.
4
+
5
+ * regex.c: ditto.
6
+
7
+ Tue Jul 17 06:01:12 2001 Minero Aoki <aamine@loveruby.net>
2
8
3
9
* doc/net/smtp.rd.ja, pop.rd.ja, http.rd.ja: new files.
4
10
Original file line number Diff line number Diff line change 51
51
# include <sys/types.h>
52
52
#endif
53
53
54
- #ifndef __STDC__
54
+ #if !defined( __STDC__ ) && !defined( _MSC_VER )
55
55
# define volatile
56
56
#endif
57
57
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ extern "C" {
45
45
#define ISDIGIT (c ) isdigit((unsigned char)(c))
46
46
#define ISXDIGIT (c ) isxdigit((unsigned char)(c))
47
47
48
- #ifndef __STDC__
48
+ #if !defined( __STDC__ ) && !defined( _MSC_VER )
49
49
# define volatile
50
50
#endif
51
51
You can’t perform that action at this time.
0 commit comments