9 lines
117 B
C
9 lines
117 B
C
|
#include <lib.h>
|
||
|
#define rmdir _rmdir
|
||
|
|
||
|
PUBLIC int rmdir(name)
|
||
|
char *name;
|
||
|
{
|
||
|
return(_callm3(FS, RMDIR, 0, name));
|
||
|
}
|