Timer0 ISR Routine Not Triggering

	//toggle the pin high or low
	if(PORTC2)
		PORTC &= ~(1<<PORTC2);
	else 
		PORTC |= (1<<PORTC2);

...does not toggle anything.