From 3ea90fc38e6fa8c4f60539dba2185270dd45c792 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 25 Oct 2010 23:46:27 +0000 Subject: [PATCH] * signal.c: fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29592 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- signal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */