]> sourceware.org Git - glibc.git/commitdiff
* stdio-common/printf_fp.c (__printf_fp): Add prototype for nested
authorAndreas Jaeger <aj@suse.de>
Wed, 27 Dec 2000 20:18:52 +0000 (20:18 +0000)
committerAndreas Jaeger <aj@suse.de>
Wed, 27 Dec 2000 20:18:52 +0000 (20:18 +0000)
function.
* elf/dl-load.c (_dl_map_object_from_fd): Likewise.
* locale/programs/locale.c (show_locale_vars): Likewise.
(show_info): Likewise.
* locale/programs/ld-collate.c (collate_output): Likewise.
* locale/programs/ld-ctype.c (set_class_defaults): Likewise.
* elf/dl-deps.c (_dl_map_object_deps): Likewise.
* stdlib/rpmatch.c (rpmatch): Likewise.

elf/dl-deps.c
elf/dl-load.c
locale/programs/ld-collate.c
locale/programs/ld-ctype.c
locale/programs/locale.c
stdio-common/printf_fp.c
stdlib/rpmatch.c

index c9997310ba4cc1e22590fd35775b7db4d16eec57..df1db89796ed4110fb6716900d1b8f053222fc61 100644 (file)
@@ -142,6 +142,8 @@ _dl_map_object_deps (struct link_map *map,
   struct list *runp, *utail, *dtail;
   unsigned int nlist, nduplist, i;
 
+  auto inline void preload (struct link_map *map);
+
   inline void preload (struct link_map *map)
     {
       known[nlist].done = 0;
index f42cb61ea3b5ff2aad4a4dfa9fe8d556f27952fb..24ac6f018ac12cb7b574abc81496d74109e140f0 100644 (file)
@@ -750,6 +750,9 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp,
 {
   struct link_map *l = NULL;
 
+  auto inline caddr_t map_segment (ElfW(Addr) mapstart, size_t len,
+                                  int prot, int fixed, off_t offset);
+
   inline caddr_t map_segment (ElfW(Addr) mapstart, size_t len,
                              int prot, int fixed, off_t offset)
     {
index aee2daaa69510937d66cc067c28b8937b40a64f4..b228834eaab90acad1cc1ebcae7f1e24a38bbae7 100644 (file)
@@ -2240,6 +2240,8 @@ collate_output (struct localedef_t *locale, struct charmap_t *charmap,
      the table.  In case we have more than one sequence starting with
      the same byte we have to use extra indirection.  */
   {
+    auto void add_to_tablewc (uint32_t ch, struct element_t *runp);
+
     void add_to_tablewc (uint32_t ch, struct element_t *runp)
       {
        if (runp->wcnext == NULL && runp->nwcs == 1)
index a5bf63f71d68b543598e6d768af667eda68a1c63..fd427f162ebaf4787ecd97524d592b86dc54927d 100644 (file)
@@ -2876,6 +2876,8 @@ set_class_defaults (struct locale_ctype_t *ctype, struct charmap_t *charmap,
      It may seem that the order of these if-blocks is arbitrary but it is NOT.
      Don't move them unless you know what you do!  */
 
+  auto void set_default (int bitpos, int from, int to);
+
   void set_default (int bitpos, int from, int to)
     {
       char tmp[2];
index 4d63441ceabcc6ced111cd1c1f0da0f9299283a4..823be8d8fe8e650e14a03c48ad76c69bebe7933c 100644 (file)
@@ -501,6 +501,8 @@ show_locale_vars (void)
   const char *lcall = getenv ("LC_ALL");
   const char *lang = getenv ("LANG") ? : "POSIX";
 
+  auto void get_source (const char *name);
+
   void get_source (const char *name)
     {
       char *val = getenv (name);
@@ -530,6 +532,8 @@ show_info (const char *name)
 {
   size_t cat_no;
 
+  auto void print_item (struct cat_item *item);
+
   void print_item (struct cat_item *item)
     {
       switch (item->value_type)
@@ -634,7 +638,7 @@ show_info (const char *name)
             information is available in a multibyte string.  */
        default:
          break;
-         
+
        }
     }
 
index 0f598d87ef2548275be284628f0c335734e316e5..dc5f47dc9987db586efd2aea42ac43d348dd562d 100644 (file)
@@ -200,6 +200,8 @@ __printf_fp (FILE *fp,
   /* Nonzero if this is output on a wide character stream.  */
   int wide = info->wide;
 
+  auto wchar_t hack_digit (void);
+
   wchar_t hack_digit (void)
     {
       mp_limb_t hi;
index 31fd471944c3e0dee99ae0f64cc4e4263f6e3601..cb8e7ae37010e4dc0e3db3674ad0cdf18c204a41 100644 (file)
@@ -29,6 +29,9 @@ rpmatch (response)
 {
   /* Match against one of the response patterns, compiling the pattern
      first if necessary.  */
+  auto inline int try (const int tag, const int match, const int nomatch,
+                      const char **lastp, regex_t *re);
+
   inline int try (const int tag, const int match, const int nomatch,
                  const char **lastp, regex_t *re)
     {
This page took 0.061137 seconds and 5 git commands to generate.