Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rename.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6bf4598e8e058fba1788fdd9b04a1e3625f92d3 (plain)
1
2
3
4
5
6
7
8
9
/* libc/sys/linux/rename.c - rename a file */

/* Copyright 2002, Red Hat Inc. */

#include <stdio.h>
#include <machine/syscall.h>

_syscall2(int,rename,const char *,old,const char *,new)