summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-03 15:40:03 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-08-03 15:40:03 +0000
commitd7c026d05806f706d43a8d86694dd957d04c7a61 (patch)
tree77bad505e90635a82d9e8478ee952330cc0e74c0 /include
parent9dd559a73a467697aaf08f3e5cb54e0488abd587 (diff)
Mark a code is GPL or not.
This is made the comparison between current and initial commit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/win32.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ruby/win32.h b/include/ruby/win32.h
index bb6d2017a1..dccb3697db 100644
--- a/include/ruby/win32.h
+++ b/include/ruby/win32.h
@@ -717,6 +717,7 @@ uintptr_t rb_w32_asynchronize(asynchronous_func_t func, uintptr_t self, int argc
#endif
#ifdef __MINGW_ATTRIB_PURE
+/* GPL */
/* get rid of bugs in math.h of mingw */
#define frexp(_X, _Y) __extension__ ({\
int intpart_frexp_bug = intpart_frexp_bug;\
@@ -724,6 +725,7 @@ uintptr_t rb_w32_asynchronize(asynchronous_func_t func, uintptr_t self, int argc
*(_Y) = intpart_frexp_bug;\
result_frexp_bug;\
})
+/* GPL */
#define modf(_X, _Y) __extension__ ({\
double intpart_modf_bug = intpart_modf_bug;\
double result_modf_bug = modf((_X), &intpart_modf_bug);\