[pypy-svn] r33018 - pypy/dist/pypy/translator/cli/src

antocuni at codespeak.net antocuni at codespeak.net
Sun Oct 8 22:44:10 CEST 2006


Author: antocuni
Date: Sun Oct  8 22:44:09 2006
New Revision: 33018

Modified:
   pypy/dist/pypy/translator/cli/src/ll_os.cs
Log:
Fix signature.



Modified: pypy/dist/pypy/translator/cli/src/ll_os.cs
==============================================================================
--- pypy/dist/pypy/translator/cli/src/ll_os.cs	(original)
+++ pypy/dist/pypy/translator/cli/src/ll_os.cs	Sun Oct  8 22:44:09 2006
@@ -343,9 +343,10 @@
             Helpers.raise_OSError(Errno.EPERM); // this is only a stub
         }
 
-        public static void ll_os_dup(int x)
+        public static int ll_os_dup(int x)
         {
             Helpers.raise_OSError(Errno.EPERM); // this is only a stub
+            return -1;
         }
 
         public static void ll_os_dup2(int x, int y)



More information about the Pypy-commit mailing list