diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-18 06:01:16 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-18 06:01:16 +0000 |
commit | 9b5f18b179d4fe726cc95a2658af0757eb66e41c (patch) | |
tree | 163849aea1178a055db2bafa1482a764a24872a3 /libjava/java/net/natInetAddressNoNet.cc | |
parent | f4f5d1d62161cc99ecfc68495d501342aa1e61dc (diff) | |
download | gcc-9b5f18b179d4fe726cc95a2658af0757eb66e41c.zip gcc-9b5f18b179d4fe726cc95a2658af0757eb66e41c.tar.gz gcc-9b5f18b179d4fe726cc95a2658af0757eb66e41c.tar.bz2 |
configure.in: Create links to architecture dependent files...
2003-03-18 Michael Koch <konqueror@gmx.de>
* configure.in: Create links to architecture dependent files,
introduced PLATFORMNET variable (set to NoNet for newlib usage).
* configure: Regenerated.
* java/net/natInetAddressNoNet.cc,
java/net/natInetAddressPosix.cc,
java/net/natInetAddressWin32.cc,
java/net/natNetworkInterfaceNoNet.cc,
java/net/natNetworkInterfacePosix.cc,
java/net/natNetworkInterfaceWin32.cc,
java/net/natPlainDatagramSocketImplNoNet.cc,
java/net/natPlainDatagramSocketImplPosix.cc,
java/net/natPlainDatagramSocketImplWin32.cc,
java/net/natPlainSocketImplNoNet.cc,
java/net/natPlainSocketImplPosix.cc,
java/net/natPlainSocketImplWin32.cc: New files.
From-SVN: r64526
Diffstat (limited to 'libjava/java/net/natInetAddressNoNet.cc')
-rw-r--r-- | libjava/java/net/natInetAddressNoNet.cc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/libjava/java/net/natInetAddressNoNet.cc b/libjava/java/net/natInetAddressNoNet.cc new file mode 100644 index 0000000..d28e6b3 --- /dev/null +++ b/libjava/java/net/natInetAddressNoNet.cc @@ -0,0 +1,35 @@ +/* Copyright (C) 2003 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +#include <config.h> + +#include <java/net/InetAddress.h> + +jbyteArray +java::net::InetAddress::aton (jstring) +{ + return NULL; +} + +jint +java::net::InetAddress::getFamily (jbyteArray bytes) +{ + return 0; +} + +JArray<java::net::InetAddress*> * +java::net::InetAddress::lookup (jstring, java::net::InetAddress *, jboolean) +{ + return NULL; +} + +jstring +java::net::InetAddress::getLocalHostname () +{ + return NULL; +} |