Another weird error

Hi, heres another weird error in my compiler. Anyone knows the solution to it?

fatal error C1070: mismatched #if/#endif pair in file 'd:\program files\microsoft visual studio 9.0\vc\include\stdlib.h'
closed account (S6k9GNh0)
Usually results from a missing a corresponding #endif

You can look it up on the MSDN for more info I believe.

EDIT: I now see that it's inside of stdlib.h. Have you been messing around in it?
Last edited on
Have you #included your own header file/files before #including stdlib.h?

If so, make sure your header files are correct. Easiest way to do this is to move all system includes first and add yours last.

Topic archived. No new replies allowed.