Gpl
Just a quick question. If I #include g++ standard libraries like stdio.h in my program, am I forced to make it under the GNU Public License or does that not count for standard libraries? I know that if you use code from a GPL'd program you have to make the new program under GPL too... Or at least provide the source code with any binaries that you distribute....
Comments
So you aren't incorporating GNU specific code, you're asking for "Whatever file you have that conforms to the ANSI/ISO C++ spec" of whatever compiler you *happen* to be running on.
It's gcc's decision to give you the GNU code.
This is actually covered in the gcc license.
* It's gcc, not g++. g++ is a way of forcing certain C++-isms on the compilation chain, but gcc is the name of the system: GNU Compiler Collection.