blob: caf5cf8f627267b6507af290244e2b1ccf53c572 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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;
}
|