Skip to content

Instantly share code, notes, and snippets.

@eban
Created December 25, 2009 10:44
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save eban/263593 to your computer and use it in GitHub Desktop.
Save eban/263593 to your computer and use it in GitHub Desktop.
ruby-1.8.7-p248 cygwin 1.7.1 quick hack
--- eval.c.orig 2009-12-21 17:11:42.000000000 +0900
+++ eval.c 2009-12-24 19:18:21.671875000 +0900
@@ -210,3 +210,3 @@
# ifdef __CYGWIN__
-int _setjmp(), _longjmp();
+int _setjmp(); void _longjmp();
# endif
--- gc.c.orig 2009-12-24 17:28:08.000000000 +0900
+++ gc.c 2009-12-24 19:18:17.875000000 +0900
@@ -42,3 +42,3 @@
#ifdef __CYGWIN__
-int _setjmp(), _longjmp();
+int _setjmp(); void _longjmp();
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment