diff options
author | kan <kan@FreeBSD.org> | 2003-07-11 03:40:53 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-07-11 03:40:53 +0000 |
commit | b2a8872fbe1ec1c49094559ac7b78e6ea4ab7180 (patch) | |
tree | f6b0610f4a17fd26aa234354f050080f789861a4 /contrib/gcc/gbl-ctors.h | |
parent | 52e69d78eee5612ac195e0701a5cebe40d1ab0e1 (diff) | |
download | FreeBSD-src-b2a8872fbe1ec1c49094559ac7b78e6ea4ab7180.zip FreeBSD-src-b2a8872fbe1ec1c49094559ac7b78e6ea4ab7180.tar.gz |
Gcc 3.3.1-pre as of 2003-07-11.
Diffstat (limited to 'contrib/gcc/gbl-ctors.h')
-rw-r--r-- | contrib/gcc/gbl-ctors.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/gcc/gbl-ctors.h b/contrib/gcc/gbl-ctors.h index 02e6835f..9ba79f0 100644 --- a/contrib/gcc/gbl-ctors.h +++ b/contrib/gcc/gbl-ctors.h @@ -23,6 +23,13 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* As a special exception, if you link this library with other files, + some of which are compiled with GCC, to produce an executable, + this library does not by itself cause the resulting executable + to be covered by the GNU General Public License. + This exception does not however invalidate any other reasons why + the executable file might be covered by the GNU General Public License. */ + /* This file contains definitions and declarations of things relating to the normal start-up-time invocation of C++ file-scope static object constructors. These declarations @@ -78,6 +85,6 @@ do { \ for (nptrs = 0; __CTOR_LIST__[nptrs + 1] != 0; nptrs++); \ for (i = nptrs; i >= 1; i--) \ __CTOR_LIST__[i] (); \ -} while (0) +} while (0) #endif |