#include <string.h>
#include "extern.h"

exeforward()

    {  fpw = fopen(BBSMAS,"r");
       while(1)
         {   if ( fgets(fbuff,255,fpw) == NULL ) break;
             if ( strncmp(hiscall,fbuff,6) != NULL ) continue;
             fclose(fpw);
           
             whoend();
             rsclose();

             exit(9);
         }
       fclose(fpw);
       paraerr();
    return(0);
    }

