mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 13:00:06 +00:00
[BZ #1221]
* posix/regex_internal.h: Remove last traces of RE_NO_INTERNAL_PROTOTYPES.
This commit is contained in:
parent
bc3a45cef8
commit
684e5a2e89
@ -1,5 +1,9 @@
|
|||||||
2005-10-15 Ulrich Drepper <drepper@redhat.com>
|
2005-10-15 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
[BZ #1221]
|
||||||
|
* posix/regex_internal.h: Remove last traces of
|
||||||
|
RE_NO_INTERNAL_PROTOTYPES.
|
||||||
|
|
||||||
[BZ #968]
|
[BZ #968]
|
||||||
* string/strxfrm_l.c (STRXFRM): Fix exit conditions of two loops.
|
* string/strxfrm_l.c (STRXFRM): Fix exit conditions of two loops.
|
||||||
|
|
||||||
|
@ -377,20 +377,18 @@ typedef struct re_dfa_t re_dfa_t;
|
|||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef RE_NO_INTERNAL_PROTOTYPES
|
|
||||||
static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr,
|
static reg_errcode_t re_string_realloc_buffers (re_string_t *pstr,
|
||||||
int new_buf_len)
|
int new_buf_len)
|
||||||
internal_function;
|
internal_function;
|
||||||
# ifdef RE_ENABLE_I18N
|
#ifdef RE_ENABLE_I18N
|
||||||
static void build_wcs_buffer (re_string_t *pstr) internal_function;
|
static void build_wcs_buffer (re_string_t *pstr) internal_function;
|
||||||
static int build_wcs_upper_buffer (re_string_t *pstr) internal_function;
|
static int build_wcs_upper_buffer (re_string_t *pstr) internal_function;
|
||||||
# endif /* RE_ENABLE_I18N */
|
#endif /* RE_ENABLE_I18N */
|
||||||
static void build_upper_buffer (re_string_t *pstr) internal_function;
|
static void build_upper_buffer (re_string_t *pstr) internal_function;
|
||||||
static void re_string_translate_buffer (re_string_t *pstr) internal_function;
|
static void re_string_translate_buffer (re_string_t *pstr) internal_function;
|
||||||
static unsigned int re_string_context_at (const re_string_t *input, int idx,
|
static unsigned int re_string_context_at (const re_string_t *input, int idx,
|
||||||
int eflags)
|
int eflags)
|
||||||
internal_function __attribute ((pure));
|
internal_function __attribute ((pure));
|
||||||
#endif
|
|
||||||
#define re_string_peek_byte(pstr, offset) \
|
#define re_string_peek_byte(pstr, offset) \
|
||||||
((pstr)->mbs[(pstr)->cur_idx + offset])
|
((pstr)->mbs[(pstr)->cur_idx + offset])
|
||||||
#define re_string_fetch_byte(pstr) \
|
#define re_string_fetch_byte(pstr) \
|
||||||
@ -702,7 +700,7 @@ bitset_mask (bitset_t dest, const bitset_t src)
|
|||||||
dest[bitset_i] &= src[bitset_i];
|
dest[bitset_i] &= src[bitset_i];
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined RE_ENABLE_I18N && !defined RE_NO_INTERNAL_PROTOTYPES
|
#ifdef RE_ENABLE_I18N
|
||||||
/* Inline functions for re_string. */
|
/* Inline functions for re_string. */
|
||||||
static inline int
|
static inline int
|
||||||
internal_function __attribute ((pure))
|
internal_function __attribute ((pure))
|
||||||
|
Loading…
Reference in New Issue
Block a user