aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/renameat.c
blob: c8203b76d23c4d7720532faf111532d6418f55b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 
 * Copyright (c) 2008-2010 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * static int
 * wrap_renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath) {
 *	int rc = -1;
 */

	pseudo_diag("help! unimplemented renameat [%s -> %s].\n", oldpath, newpath);
	rc = real_renameat(olddirfd, oldpath, newdirfd, newpath);

/*	return rc;
 * }
 */