| 1 | /* error.h,v 1.3 2004/09/14 22:27:32 bird Exp */
|
|---|
| 2 | /** @file
|
|---|
| 3 | * GLIBC v2.3.2
|
|---|
| 4 | *
|
|---|
| 5 | * @changed bird: shut up -Wundef.
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | /* Declaration for error-reporting function
|
|---|
| 9 | Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|---|
| 10 | This file is part of the GNU C Library. Its master source is NOT part of
|
|---|
| 11 | the C library, however. The master source lives in /gd/gnu/lib.
|
|---|
| 12 |
|
|---|
| 13 | The GNU C Library is free software; you can redistribute it and/or
|
|---|
| 14 | modify it under the terms of the GNU Lesser General Public
|
|---|
| 15 | License as published by the Free Software Foundation; either
|
|---|
| 16 | version 2.1 of the License, or (at your option) any later version.
|
|---|
| 17 |
|
|---|
| 18 | The GNU C Library is distributed in the hope that it will be useful,
|
|---|
| 19 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 20 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|---|
| 21 | Lesser General Public License for more details.
|
|---|
| 22 |
|
|---|
| 23 | You should have received a copy of the GNU Lesser General Public
|
|---|
| 24 | License along with the GNU C Library; if not, write to the Free
|
|---|
| 25 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|---|
| 26 | 02111-1307 USA. */
|
|---|
| 27 |
|
|---|
| 28 | #ifndef _ERROR_H
|
|---|
| 29 | #define _ERROR_H 1
|
|---|
| 30 |
|
|---|
| 31 | #ifndef __attribute__
|
|---|
| 32 | /* This feature is available in gcc versions 2.5 and later. */
|
|---|
| 33 | # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || (defined(__STRICT_ANSI__) && __STRICT_ANSI__) /* bird: shut up -Wundef */
|
|---|
| 34 | # define __attribute__(Spec) /* empty */
|
|---|
| 35 | # endif
|
|---|
| 36 | /* The __-protected variants of `format' and `printf' attributes
|
|---|
| 37 | are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
|
|---|
| 38 | # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
|
|---|
| 39 | # define __format__ format
|
|---|
| 40 | # define __printf__ printf
|
|---|
| 41 | # endif
|
|---|
| 42 | #endif
|
|---|
|
|---|