aboutsummaryrefslogtreecommitdiff
blob: 322af1bdd5cbb878dcc8e3dd151daef12c1f8444 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * renameat() wrapper.
 *
 * Copyright 1999-2008 Gentoo Foundation
 * Licensed under the GPL-2
 */

#define WRAPPER_ARGS_PROTO int olddirfd, const char *oldpath, int newdirfd, const char *newpath
#define WRAPPER_ARGS olddirfd, oldpath, newdirfd, newpath
#define WRAPPER_SAFE() (SB_SAFE_AT(olddirfd, oldpath, 0) && SB_SAFE_AT(newdirfd, newpath, 0))
#include "__wrapper_simple.c"