[BACK]Return to remove.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/remove.c, Revision 1.1

1.1     ! deraadt     1: #include <stdio.h>
        !             2:
        !             3: int remove(const char *filename)
        !             4: {
        !             5:   return unlink(filename);
        !             6: }