summaryrefslogtreecommitdiffstats
path: root/luni/src/main/native/java_io_Console.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2010-04-16 17:44:12 -0700
committerElliott Hughes <enh@google.com>2010-04-16 17:44:12 -0700
commitc08f9fb2a3be82bb1a3f477ca1524ddcf7a1d4b8 (patch)
treecc325048a7dc4cb15eb2f39244c3b881b284644d /luni/src/main/native/java_io_Console.cpp
parent757a7942eed2b0aa457f8517a0259d2ac82c5b18 (diff)
downloadlibcore-c08f9fb2a3be82bb1a3f477ca1524ddcf7a1d4b8.zip
libcore-c08f9fb2a3be82bb1a3f477ca1524ddcf7a1d4b8.tar.gz
libcore-c08f9fb2a3be82bb1a3f477ca1524ddcf7a1d4b8.tar.bz2
Move the libcore registration out of libnativehelpers and into libcore.
Bug: 754114 Change-Id: Iaa03def509c10cbaa12fd2128584b93d4be4a6b7
Diffstat (limited to 'luni/src/main/native/java_io_Console.cpp')
-rw-r--r--luni/src/main/native/java_io_Console.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/luni/src/main/native/java_io_Console.cpp b/luni/src/main/native/java_io_Console.cpp
index ee48383..fdaafaf 100644
--- a/luni/src/main/native/java_io_Console.cpp
+++ b/luni/src/main/native/java_io_Console.cpp
@@ -15,7 +15,6 @@
* limitations under the License.
*/
-#include "AndroidSystemNatives.h"
#include "JNIHelp.h"
#include <errno.h>
@@ -46,7 +45,6 @@ static jint java_io_Console_setEcho(JNIEnv* env, jclass, jboolean on, jint previ
}
static JNINativeMethod gMethods[] = {
- /* name, signature, funcPtr */
{ "isatty", "(I)Z", (void*) java_io_Console_isatty },
{ "setEchoImpl", "(ZI)I", (void*) java_io_Console_setEcho },
};