summaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-25 23:46:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-25 23:46:27 +0000
commit3ea90fc38e6fa8c4f60539dba2185270dd45c792 (patch)
treeb7415fb6613554667ee398debe2f93c64c2cbbe1 /signal.c
parent4d9a6ab181225f091ebcdf6b8ddb9b2bc75260fd (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/signal.c b/signal.c
index e2d9d84e4d..0c0675e839 100644
--- a/signal.c
+++ b/signal.c
@@ -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 */