]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - catgets/catgetsinfo.h
i686: Regenerate ulps
[thirdparty/glibc.git] / catgets / catgetsinfo.h
index d4aa003b34a99f5ae733f3dbb01ad5c9223234ba..65f14fb88c77574e833372fe1b419d5ffb36e441 100644 (file)
@@ -1,6 +1,5 @@
-/* Copyright (C) 1996, 1997, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2022 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
-   Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu>.
 
    The GNU C Library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; if not, write to the Free
-   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-   02111-1307 USA.  */
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
 
 #include <sys/types.h>
 
 
 struct catalog_obj
 {
-  u_int32_t magic;
-  u_int32_t plane_size;
-  u_int32_t plane_depth;
+  uint32_t magic;
+  uint32_t plane_size;
+  uint32_t plane_depth;
   /* This is in fact two arrays in one: always a pair of name and
      pointer into the data area.  */
-  u_int32_t name_ptr[0];
+  uint32_t name_ptr[0];
 };
 
 
@@ -38,7 +36,7 @@ typedef struct catalog_info
 
   size_t plane_size;
   size_t plane_depth;
-  u_int32_t *name_ptr;
+  uint32_t *name_ptr;
   const char *strings;
 
   struct catalog_obj *file_ptr;
@@ -48,9 +46,10 @@ typedef struct catalog_info
 
 
 /* The magic number to signal we really have a catalog file.  */
-#define CATGETS_MAGIC 0x960408de
+#define CATGETS_MAGIC 0x960408deU
 
 
 /* Prototypes for helper functions.  */
 extern int __open_catalog (const char *cat_name, const char *nlspath,
                           const char *env_var, __nl_catd __catalog);
+libc_hidden_proto (__open_catalog)