X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Frename.c;h=ba4a75dfd20a3462d71a050e403a73d360e16c06;hb=e1c526e9bad3f6e69391e94059096145390508d3;hp=987b78a5906cb6f1b259468953beac60f2ff126c;hpb=eb5ed9b72fcfde2f2f05a9140723a25ddf0c5f1b;p=pdclib diff --git a/functions/stdio/rename.c b/functions/stdio/rename.c index 987b78a..ba4a75d 100644 --- a/functions/stdio/rename.c +++ b/functions/stdio/rename.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* rename( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -13,11 +11,11 @@ #include -extern struct _PDCLIB_file_t * _PDCLIB_filelist; +extern _PDCLIB_file_t * _PDCLIB_filelist; int rename( const char * old, const char * new ) { - struct _PDCLIB_file_t * current = _PDCLIB_filelist; + FILE * current = _PDCLIB_filelist; while ( current != NULL ) { if ( ( current->filename != NULL ) && ( strcmp( current->filename, old ) == 0 ) )