Go to most recent revision |
Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2 |
- |
1 |
#include <lib9.h>
|
|
|
2 |
|
|
|
3 |
extern int _MOUNT(int, int, char*, int, char*);
|
|
|
4 |
|
|
|
5 |
int
|
|
|
6 |
mount(int fd, int afd, char *old, int flag, char *aname)
|
|
|
7 |
{
|
|
|
8 |
return _MOUNT(fd, afd, old, flag, aname);
|
|
|
9 |
}
|