diff options
Diffstat (limited to 'libstdc++-v3/shadow/limits.h')
| -rw-r--r-- | libstdc++-v3/shadow/limits.h | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/libstdc++-v3/shadow/limits.h b/libstdc++-v3/shadow/limits.h index 271c883a57e..26aa771f2d5 100644 --- a/libstdc++-v3/shadow/limits.h +++ b/libstdc++-v3/shadow/limits.h @@ -1,6 +1,6 @@ // -*- C++ -*- header wrapper. -// Copyright (C) 1997-1999 Free Software Foundation, Inc. +// Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the @@ -28,11 +28,27 @@ // the GNU General Public License. - #ifndef _INCLUDED_CPP_LIMITS_H_ # define _INCLUDED_CPP_LIMITS_H_ 1 -# undef _SHADOW_NAME -# define _SHADOW_NAME <climits> -# include <bits/generic_shadow.h> -# undef _SHADOW_NAME + +# ifdef _IN_C_LEGACY_ /* sub-included by a C header */ + // get out of the "legacy" + } // close extern "C" + } // close namespace _C_legacy:: +# undef _IN_C_LEGACY_ +# define _LIMITS_NEED_C_LEGACY_ +# endif + +# include <climits> + + // Expose global C names, including non-standard ones, but shadow + // some names and types with the std:: C++ version. + +# ifdef _LIMITS_NEED_C_LEGACY_ + // dive back into the "swamp" + namespace _C_legacy { + extern "C" { +# define _IN_C_LEGACY_ +# undef _LIMITS_NEED_C_LEGACY_ +# endif /* _LIMITS_NEED_C_LEGACY_ */ #endif /* _INCLUDED_CPP_LIMITS_H_ */ |

