summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/stdio/rename.c
blob: 6232407f190ecce981a7d7243ca65865d9e74a00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * pANS stdio -- rename
 */
#include "iolib.h"
int rename(const char *old, const char *new){
	if(link((char *)old, (char *)new)<0) return -1;
	if(unlink((char *)old)<0){
		unlink((char *)new);
		return -1;
	}
	return 0;
}