/* remove( const char * )12This file is part of the Public Domain C Library (PDCLib).3Permission is granted to use, modify, and / or redistribute at will.4*/56/* This is an example implementation of remove() fit for use with POSIX kernels.7*/89#include <stdio.h>1011#ifndef REGTEST1213#include <string.h>14#include <errno.h>1516extern struct _PDCLIB_file_t * _PDCLIB_filelist;1718int remove( const char * pathname )19{20errno = ENOTSUP;21return 1;22}2324#endif2526#ifdef TEST27#include "_PDCLIB_test.h"2829int main( void )30{31/* Testing covered by ftell.c (and several others) */32return TEST_RESULTS;33}3435#endif36373839