Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please tell me, what is the location of stdlib.h in XCode 4.3 ?

share|improve this question
1  
can't say about 4.3, but on my machine with XCode 4.2 locate stdlib.h | grep /stdlib\.h$ outputs /Developer/SDKs/MacOSX10.6.sdk/usr/include/c++/4.2.1/tr1/stdlib.h /Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h /usr/include/c++/4.2.1/tr1/stdlib.h /usr/include/stdlib.h – darkmist Feb 22 '12 at 18:08
@darkmist Apple have bundled Xcode 4.3 to the single application package, and now it's quite hard to find things... – Jake Badlands Feb 22 '12 at 19:07

3 Answers

up vote 6 down vote accepted

What was in /Developer in Xcode versions prior to 4.3 is now within the Xcode.app bundle. There are several, one for each supported SDK and Platform:

$ find /Applications/Xcode.app -name stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/include/c++/4.2.1/tr1/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/usr/include/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/usr/include/c++/4.2.1/tr1/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/usr/include/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk/usr/include/c++/4.2.1/tr1/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk/usr/include/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/c++/4.2.1/tr1/stdlib.h
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/stdlib.h
share|improve this answer
Thank you very much! You have told me not only where to find it, but also about a great way to find other header files! – Jake Badlands Feb 23 '12 at 18:07

If you install the command line tools (Xcode > Preferences > Downloads), then the file is present at/usr/include/stdlib.h.

share|improve this answer

I think you should be using unistd.h instead of stdlib.h. I had an issue trying to use sleep() when importing stdlib.h and I had to import unistd.h.

share|improve this answer
OK. Could you tell me the location of unistd.h then? – Jake Badlands Feb 22 '12 at 19:06
1  
Its at /usr/include/unistd.h – larick Feb 22 '12 at 21:15
stdlib is specified by POSIX. You should not have to work around it. bames53 (below) had the correct answer (general solution, even for non-Xcode command line builds). trojanfoe (above) answered a question that was not asked (relating to Xcode builds). Also, sometimes you don't have that kind of latitude (stdlib.h -> unistd.h) – noloader Dec 29 '12 at 8:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.