comparison inttypes.h @ 5:72746e08c7ec

License chaged to BSD-derivative.
author ipse.c99@d525d15b-5824-0410-80a3-6185d19c2cde
date Tue, 12 Dec 2006 22:08:02 +0000
parents 0cf270b831ef
children dfeb4c5e9077
comparison
equal deleted inserted replaced
4:8409c3c61e95 5:72746e08c7ec
1 // ISO C9x compliant inttypes.h for Miscrosoft Visual Studio 1 // ISO C9x compliant inttypes.h for Miscrosoft Visual Studio
2 // Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 2 // Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
3 // 3 //
4 // Copyright (c) 2006 Alexander Chemeris 4 // Copyright (c) 2006 Alexander Chemeris
5 // 5 //
6 // This library is free software; you can redistribute it and/or 6 // Redistribution and use in source and binary forms, with or without
7 // modify it under the terms of the GNU Lesser General Public 7 // modification, are permitted provided that the following conditions are met:
8 // License as published by the Free Software Foundation; either 8 //
9 // version 2.1 of the License, or (at your option) any later version. 9 // 1. Redistributions of source code must retain the above copyright notice,
10 // 10 // this list of conditions and the following disclaimer.
11 // This library is distributed in the hope that it will be useful, 11 //
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // 2. Redistributions in binary form must reproduce the above copyright
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 // notice, this list of conditions and the following disclaimer in the
14 // Lesser General Public License for more details. 14 // documentation and/or other materials provided with the distribution.
15 // 15 //
16 // You should have received a copy of the GNU Lesser General Public 16 // 3. The name of the author may be used to endorse or promote products
17 // License along with this library; if not, write to the Free Software 17 // derived from this software without specific prior written permission.
18 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 //
19 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
22 // EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
19 /////////////////////////////////////////////////////////////////////////////// 30 ///////////////////////////////////////////////////////////////////////////////
20 31
21 #ifndef _MSC_VER // [ 32 #ifndef _MSC_VER // [
22 #error "Use this header only with Microsoft Visual Studio 2003 or later!" 33 #error "Use this header only with Microsoft Visual Studio 2003 or later!"
23 #endif // _MSC_VER ] 34 #endif // _MSC_VER ]