]> sourceware.org Git - glibc.git/commitdiff
Update.
authorAndreas Jaeger <aj@suse.de>
Tue, 6 Feb 2001 10:46:27 +0000 (10:46 +0000)
committerAndreas Jaeger <aj@suse.de>
Tue, 6 Feb 2001 10:46:27 +0000 (10:46 +0000)
2001-02-06  Andreas Jaeger  <aj@suse.de>

* elf/firstobj.c: Add prototype.

* posix/regex.c (convert_mbs_to_wcs): Make static, add prototype
(truncate_wchar): Likewise.

ChangeLog
posix/regex.c

index 19dbd4800f8a74d767d0ddef9b0a9df430688327..098e787040862feb400b38852ea0aa695e05f7ec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-02-06  Andreas Jaeger  <aj@suse.de>
+
+       * elf/firstobj.c: Add prototype.
+
+       * posix/regex.c (convert_mbs_to_wcs): Make static, add prototype
+       (truncate_wchar): Likewise.
+
 2001-02-06  Ulrich Drepper  <drepper@redhat.com>
 
        * locale/programs/locale.c: Implement --verbose option for -a
index 6a8c899e9798b399a520f8670376f038c67de7c0..b4979d0bc15c17adce73b5547ee5ce4716980644 100644 (file)
@@ -1158,7 +1158,11 @@ printchar (c)
    This assume invalid multibyte sequences as binary data.
    We assume offset_buffer and is_binary is already allocated
    enough space.  */
-size_t
+
+static size_t convert_mbs_to_wcs (CHAR_TYPE *dest, const unsigned char* src,
+                                 size_t len, int *offset_buffer,
+                                 int *is_binary);
+static size_t
 convert_mbs_to_wcs (dest, src, len, offset_buffer, is_binary)
      CHAR_TYPE *dest;
      const unsigned char* src;
@@ -4525,8 +4529,10 @@ compile_range (range_start_char, p_ptr, pend, translate, syntax, b)
 #ifdef MBS_SUPPORT
 /* local function for re_compile_fastmap.
    truncate wchar_t character to char.  */
-unsigned char
-truncate_wchar(c)
+static unsigned char truncate_wchar (CHAR_TYPE c);
+
+static unsigned char
+truncate_wchar (c)
      CHAR_TYPE c;
 {
   unsigned char buf[MB_LEN_MAX];
This page took 1.806081 seconds and 5 git commands to generate.