Link to home
Start Free TrialLog in
Avatar of s_lavie
s_lavie

asked on

Visual C - error

When tring to compile a C file in a console app. in Visual C++ 5.0 I got the following error:
excpt.h(31): fatal error C1189: #error : ERROR: Use of C runtime library internal header file.
What is it and can I fix it?
ASKER CERTIFIED SOLUTION
Avatar of NakedTimeMan
NakedTimeMan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of s_lavie
s_lavie

ASKER

Hi NakedTimeMan,
I'm not sure i was clear, but the header file excpt.h is not my file, but the "Visual"'s file. No way I made undef to something, it must be a problam of my enviornment definitions, I guess, isn't it?

Hey s_lavie

Well, there are 2 things that you might want to try, first try to add #include <fpieee.h> before the line where excpt.h is included.

if this doesnt work... is it necessary that you include excpt.h? can you try comenting out that line and recompiling?

I looked at the file excpt.h and unless you are trying to write your own exception hanlding routines doesnt look like you are going to need anything in that file...

Take care,
NakedTimeMan

Avatar of s_lavie

ASKER

Hi NakedTimeMan,
I probably had a problem in the instalation - I reinstaled the compiler, and it goes fine. I don't no what caused that problem, but I'm OK for now.
Thanks