mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
10 lines
189 B
C
10 lines
189 B
C
|
/* 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)
|
||
|
|