#include <wiringPi.h>
#include <stdio.h>
#define ledPin 0
main()
{
    wiringPiSetup()
    int x;
    for(x=0; x<4; x+1)
    {
        digitalWrite(ledPin, HIGH);
        delay(500);
        digitalWrite(ledPin, LOW);
        delay(500);
    }
}    
the error is on line 7 and i've been stuck on it for 2 days (i code in geany)
 
     
    