[SOLVED] Arduino IDE 1.01 preprocessor commands

I declared my functions right after my include and now it works regardless of my defines. Thanks for the help!

#include <Arduino.h>
void orangeLED();
void redLED();
void greenLED();
void LEDoff();

#define DEBUG 1
#define SQUELCH 0
...snipity do dah...
}
void orangeLED()
{
    //do stuff
}
...snipity day....