2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <lib.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2011-11-28 11:07:55 +01:00
|
|
|
int rename(const char *name, const char *name2)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
|
|
|
m.m1_i1 = strlen(name) + 1;
|
|
|
|
m.m1_i2 = strlen(name2) + 1;
|
2011-11-28 11:07:55 +01:00
|
|
|
m.m1_p1 = (char *) __UNCONST(name);
|
|
|
|
m.m1_p2 = (char *) __UNCONST(name2);
|
2011-02-17 18:11:09 +01:00
|
|
|
return(_syscall(VFS_PROC_NR, RENAME, &m));
|
|
|
|
}
|