URI: 
       remove.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR 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 }