diff options
Diffstat (limited to 'libgloss/libnosys/unlink.c')
-rw-r--r-- | libgloss/libnosys/unlink.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libgloss/libnosys/unlink.c b/libgloss/libnosys/unlink.c deleted file mode 100644 index c543709..0000000 --- a/libgloss/libnosys/unlink.c +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Stub version of unlink. - */ - -#include "config.h" -#include <_ansi.h> -#include <_syslist.h> -#include <errno.h> -#undef errno -extern int errno; -#include "warning.h" - -int -_DEFUN (_unlink, (name), - char *name) -{ - errno = ENOSYS; - return -1; -} - -stub_warning(_unlink) |