Changeset 3613 for trunk/src/sed/lib/regex.c
- Timestamp:
- Sep 19, 2024, 2:34:43 AM (10 months ago)
- Location:
- trunk/src/sed
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sed
-
Property svn:mergeinfo
set to
/vendor/sed/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/sed/lib/regex.c
r599 r3613 1 1 /* Extended regular expression matching and search library. 2 Copyright (C) 2002 , 2003, 2005Free Software Foundation, Inc.2 Copyright (C) 2002-2022 Free Software Foundation, Inc. 3 3 This file is part of the GNU C Library. 4 4 Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>. … … 15 15 16 16 You should have received a copy of the GNU Lesser General Public 17 License along with the GNU C Library; if not, write to the Free 18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 19 02111-1307 USA. */ 17 License along with the GNU C Library; if not, see 18 <https://www.gnu.org/licenses/>. */ 20 19 21 #ifdef HAVE_CONFIG_H 22 #include "config.h" 20 #define __STDC_WANT_IEC_60559_BFP_EXT__ 21 22 #ifndef _LIBC 23 # include <libc-config.h> 24 25 # if __GNUC_PREREQ (4, 6) 26 # pragma GCC diagnostic ignored "-Wsuggest-attribute=pure" 27 # pragma GCC diagnostic ignored "-Wvla" 28 # endif 29 # if __GNUC_PREREQ (4, 3) 30 # pragma GCC diagnostic ignored "-Wold-style-definition" 31 # pragma GCC diagnostic ignored "-Wtype-limits" 32 # endif 23 33 #endif 24 34 25 /* Make sure no one compiles this code with a C++ compiler. */26 #if def __cplusplus35 /* Make sure no one compiles this code with a C++ compiler. */ 36 #if defined __cplusplus && defined _LIBC 27 37 # error "This is C code, use a C compiler" 28 38 #endif
Note:
See TracChangeset
for help on using the changeset viewer.