This is also tend to happen when you are using a defined function which haven't been defined yet.
Like
#define DEGREES( radians ) ( radians / M_PI * 180 )
#define RADIANS( degrees ) ( degrees * M_PI / 180 )
If you forget to define these but you are using them, you'll get broken pipe errors too
|