Mid_Vol is not found.
Code:
void LEVERED (char *** special, char * firstdate, char * lastdate, int no_days);
void HI_ER (char *** special,char * firstdate,char * lastdate, int no_days );
void Lo_ER (char *** special,char * firstdate,char * lastdate, int no_days );
void HI_Vol (char *** special,char * firstdate,char * lastdate, int no_days );
void Lo_Vol (char *** special,char * firstdate,char * lastdate, int no_days );
void Mid_Vol (char *** special,char * firstdate,char * lastdate, int no_days );
void Mid_ER (char *** special,char * firstdate,char * lastdate, int no_days );
int main (int argc, const char * argv[]) {
...
LEVERED (special, firstdate, lastdate, testperiod);
HI_ER(special, firstdate, lastdate, testperiod);
Lo_ER(special, firstdate, lastdate, testperiod);
HI_Vol(special, firstdate, lastdate, testperiod);
Lo_Vol(special, firstdate, lastdate, testperiod);
Mid_Vol(special, firstdate, lastdate, testperiod);
Mid_ER(special, firstdate, lastdate, testperiod);
}
return (0)
void Mid_Vol (char *** special, char * firstdate, char * lastdate, int no_days)
{
return;
}