aboutsummaryrefslogtreecommitdiff
path: root/src/libip/none.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-12-31 19:33:03 +0000
committerrsc <devnull@localhost>2005-12-31 19:33:03 +0000
commit9aec88f29cf8145f887f31a4bfc7299f723b72e8 (patch)
tree9adf1d233e7e947a506539efe2bbcaefd96853f4 /src/libip/none.c
parent9fe7e1a14c84bddc7bb0ec16ce23f44b5479ce94 (diff)
downloadplan9port-9aec88f29cf8145f887f31a4bfc7299f723b72e8.tar.gz
plan9port-9aec88f29cf8145f887f31a4bfc7299f723b72e8.tar.bz2
plan9port-9aec88f29cf8145f887f31a4bfc7299f723b72e8.zip
new
Diffstat (limited to 'src/libip/none.c')
-rw-r--r--src/libip/none.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/libip/none.c b/src/libip/none.c
new file mode 100644
index 00000000..20c04c67
--- /dev/null
+++ b/src/libip/none.c
@@ -0,0 +1,24 @@
+#include <u.h>
+#include <libc.h>
+#include <ip.h>
+
+Ipifc*
+readipifc(char *net, Ipifc *ipifc, int index)
+{
+ USED(net);
+ USED(ipifc);
+ USED(index);
+
+ werrstr("not implemented");
+ return nil;
+}
+
+int
+myetheraddr(uchar *to, char *dev)
+{
+ USED(to);
+ USED(dev);
+
+ werrstr("not implemented");
+ return -1;
+}