From 6e78648d7fed6f95a2340d94a4321cb37061a694 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 18 Jan 2000 09:36:38 +0000 Subject: [PATCH] Define RE_DUP_MAX correctly. --- posix/bits/posix2_lim.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/posix/bits/posix2_lim.h b/posix/bits/posix2_lim.h index d2d89694ec5..eaaf67129a1 100644 --- a/posix/bits/posix2_lim.h +++ b/posix/bits/posix2_lim.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1996, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -90,12 +90,11 @@ #ifndef LINE_MAX #define LINE_MAX _POSIX2_LINE_MAX #endif -#ifndef RE_DUP_MAX -#define RE_DUP_MAX _POSIX2_RE_DUP_MAX -#endif #ifndef CHARCLASS_NAME_MAX #define CHARCLASS_NAME_MAX _POSIX2_CHARCLASS_NAME_MAX #endif +/* This value is defined like this in regex.h. */ +#define RE_DUP_MAX (0x7fff) #endif /* bits/posix2_lim.h */ -- 2.47.2