rename.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) 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 }