9 lines
128 B
C
9 lines
128 B
C
|
#include <stdio.h>
|
||
|
|
||
|
/* TODO */
|
||
|
|
||
|
int rename(const char * oldpath, const char * newpath) {
|
||
|
/* Unsupported */
|
||
|
return -1;
|
||
|
}
|