X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2F_PDCLIB%2F_PDCLIB_closeall.c;fp=functions%2F_PDCLIB%2F_PDCLIB_closeall.c;h=bc6b417f88871cb0eeb4c16dae0f58c898419a65;hb=0a419d48138f1411d6e3e50a367b9ece5a2cf893;hp=5086d0d64bb09305245cc10692cc2a291978b8a7;hpb=702e9008178bdb5c1b123b963868c946537fb7f5;p=pdclib diff --git a/functions/_PDCLIB/_PDCLIB_closeall.c b/functions/_PDCLIB/_PDCLIB_closeall.c index 5086d0d..bc6b417 100644 --- a/functions/_PDCLIB/_PDCLIB_closeall.c +++ b/functions/_PDCLIB/_PDCLIB_closeall.c @@ -7,14 +7,15 @@ */ #include +#include <_PDCLIB_io.h> #ifndef REGTEST -extern struct _PDCLIB_file_t * _PDCLIB_filelist; +extern _PDCLIB_file_t * _PDCLIB_filelist; void _PDCLIB_closeall( void ) { - struct _PDCLIB_file_t * stream = _PDCLIB_filelist; - struct _PDCLIB_file_t * next; + _PDCLIB_file_t * stream = _PDCLIB_filelist; + _PDCLIB_file_t * next; while ( stream != NULL ) { next = stream->next;