diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-25 23:46:27 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-25 23:46:27 +0000 |
commit | 3ea90fc38e6fa8c4f60539dba2185270dd45c792 (patch) | |
tree | b7415fb6613554667ee398debe2f93c64c2cbbe1 /signal.c | |
parent | 4d9a6ab181225f091ebcdf6b8ddb9b2bc75260fd (diff) |
* signal.c: fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'signal.c')
-rw-r--r-- | signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ typedef LONG rb_atomic_t; # define ATOMIC_INC(var) InterlockedIncrement(&(var)) # define ATOMIC_DEC(var) InterlockedDecrement(&(var)) -#elsif __GNUC__ >= 4 +#elif __GNUC__ >= 4 /* @shyouhei hack to support atomic operations in case of gcc. Gcc * has its own pseudo-insns to support them. See info, or * http://gcc.gnu.org/onlinedocs/gcc/Atomic-Builtins.html */ |