From 4570abc614d512cb030176fb1736bcdb9265161d Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 17 Oct 2002 13:58:38 +0000 Subject: [PATCH] close0 is private. --- .../utils/org/eclipse/cdt/utils/pty/PTYInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/pty/PTYInputStream.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/pty/PTYInputStream.java index ad4caa68661..fa6a29a4918 100644 --- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/pty/PTYInputStream.java +++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/pty/PTYInputStream.java @@ -68,7 +68,7 @@ class PTYInputStream extends InputStream { } private native int read0(int fd, byte[] buf, int len) throws IOException; - native int close0(int fd); + private native int close0(int fd) throws IOException; static { System.loadLibrary("pty");