Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where is _HUGE defined?

Status
Not open for further replies.

ilovecad

Programmer
Aug 25, 2005
3
US
Hi,

In math.h, there is a declaration:

#ifndef __assembler /* Protect from assembler */
_CRTIMP extern double _HUGE;
#endif /* __assembler */
#define HUGE_VAL _HUGE

but where is _HUGE defined?
I got an unresolved external symbol error when using
HUGE_VAL.
Can someone tell me how to solve the problem?
 
The _HUGE var is defined in huge.obj contained in libcd.lib from RTL (ask VC++ map file generation). This library is automatically linked in my VC++ 6.0 projects...
 
Some addition: libcd (with d) in debug mode. It's a standard RT library.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top