* ruby.h: enable volatile directive with VC++.
* regex.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1628 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2c85be7df3
commit
2d84b42b00
@ -1,4 +1,10 @@
|
|||||||
Fri Jul 17 06:01:12 2001 Minero Aoki <aamine@loveruby.net>
|
Tue Jul 17 11:44:40 2001 Usaku Nakamura <usa@osb.att.ne.jp>
|
||||||
|
|
||||||
|
* ruby.h: enable volatile directive with VC++.
|
||||||
|
|
||||||
|
* regex.c: ditto.
|
||||||
|
|
||||||
|
Tue Jul 17 06:01:12 2001 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
* doc/net/smtp.rd.ja, pop.rd.ja, http.rd.ja: new files.
|
* doc/net/smtp.rd.ja, pop.rd.ja, http.rd.ja: new files.
|
||||||
|
|
||||||
|
2
regex.c
2
regex.c
@ -51,7 +51,7 @@
|
|||||||
# include <sys/types.h>
|
# include <sys/types.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __STDC__
|
#if !defined(__STDC__) && !defined(_MSC_VER)
|
||||||
# define volatile
|
# define volatile
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
2
ruby.h
2
ruby.h
@ -45,7 +45,7 @@ extern "C" {
|
|||||||
#define ISDIGIT(c) isdigit((unsigned char)(c))
|
#define ISDIGIT(c) isdigit((unsigned char)(c))
|
||||||
#define ISXDIGIT(c) isxdigit((unsigned char)(c))
|
#define ISXDIGIT(c) isxdigit((unsigned char)(c))
|
||||||
|
|
||||||
#ifndef __STDC__
|
#if !defined(__STDC__) && !defined(_MSC_VER)
|
||||||
# define volatile
|
# define volatile
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user