scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

rename.c (136B)


      1 #include <stdio.h>
      2 
      3 #include "../syscall.h"
      4 
      5 #undef rename
      6 
      7 int
      8 rename(const char *old, const char *new)
      9 {
     10 	return _rename(old, new);
     11 }