scc

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

remove.c (124B)


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