Is there some reason float.h is missing in /usr/include/ on a standard install of Xcode 4.4.1 (w/ Command Line Tools installed)? As this is part of the C standard (at least 9899:2011) it would seem to be an oversight?
Tell me more
×
Ask Different is a question and answer site for
power users of Apple hardware and software. It's 100% free, no registration required.
|
|
|||
closed as off topic by daviesgeek, jmlumpkin, patrix♦, Daniel Lawson♦ Aug 29 '12 at 13:03
Questions on Ask Different are expected to relate to Apple hardware or software within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
float.his missing from the installation or just from/usr/include/? The C compiler package may install headers anywhere it wants to. The syntax<float.h>is used for that. Trycc -Ein a C file containing just#include <float.h.>to see where it is installed. – lhf Aug 29 '12 at 1:38