mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
12 lines
236 B
C
12 lines
236 B
C
#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");
|
|
}
|
|
|