blob: 28380e13b69fbc47d8926a616541d36294d8e11e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <u.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <libc.h>
#include "mountnfs.h"
void
mountnfs(int proto, struct sockaddr_in *addr, uchar *handle, int hlen, char *mtpt)
{
sysfatal("mountnfs not implemented");
}
|