summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-21 08:54:24 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-21 08:54:24 +0000
commitd1d679f8cb40c264d283af7a029fc9c23cb0d2cc (patch)
tree6768567241fa45e7d44d46dd39c3e725270a3bb0 /ext
parentdf0320d8c214152fc32c30f793fceda26ed14d84 (diff)
* ext/socket/extconf.rb: typo fix(#endif -> #else).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/socket/extconf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb
index c329721029..02b410cafc 100644
--- a/ext/socket/extconf.rb
+++ b/ext/socket/extconf.rb
@@ -124,7 +124,7 @@ end
#ifdef _WIN32
# include <windows.h>
# include <winsock.h>
-#endif
+#else
# include <sys/types.h>
# include <netdb.h>
# include <string.h>
@@ -147,7 +147,7 @@ end
#ifdef _WIN32
# include <windows.h>
# include <winsock.h>
-#endif
+#else
# include <sys/types.h>
# include <netdb.h>
# include <string.h>