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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

stdlib.h problem.....

Status
Not open for further replies.

borlandbat

Programmer
Nov 15, 2000
4
SG
why do i have an error from the stdlib.h file? The error goes like this.....

[C++ Error] stdlib.h(500): E2316 '_argc' is not a member of 'std'.
[C++ Error] stdlib.h(500): E2272 Identifier expected.
[C++ Error] stdlib.h(501): E2316 '_argv' is not a member of 'std'.
[C++ Error] stdlib.h(501): E2272 Identifier expected.
[C++ Error] stdlib.h(503): E2316 '__doserrno' is not a member of 'std'.
[C++ Error] stdlib.h(503): E2272 Identifier expected.

and the list goes on and on............all errors from the stdlib.h

pls help....
 
You are probably calling a function in stdlib.h with the wrong arguments...need to have a look at the rest of the code. It's very unlikely that stdlib.h contains an error. These kind of errors are usually caused by other program errors, and the compiler messages should not be taken literally, but should give you a hint what ELSE to look for...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top