]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/generic/ldconfig.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / generic / ldconfig.h
index 43cb9bdb0c09b21ee67d299a54f6dc7d03c3dd36..07600b75961579acf8a650ea9d942159fd9f1df9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1999-2016 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>, 1999.
 
 #ifndef _LDCONFIG_H
 #define _LDCONFIG_H
 
-#define FLAG_ANY               -1
-#define FLAG_TYPE_MASK         0x00ff
-#define FLAG_LIBC4             0x0000
-#define FLAG_ELF               0x0001
-#define FLAG_ELF_LIBC5         0x0002
-#define FLAG_ELF_LIBC6         0x0003
-#define FLAG_REQUIRED_MASK     0xff00
-#define FLAG_SPARC_LIB64       0x0100
-#define FLAG_IA64_LIB64                0x0200
-#define FLAG_X8664_LIB64       0x0300
-#define FLAG_S390_LIB64                0x0400
-#define FLAG_POWERPC_LIB64     0x0500
-#define FLAG_MIPS64_LIBN32     0x0600
-#define FLAG_MIPS64_LIBN64     0x0700
-#define FLAG_X8664_LIBX32      0x0800
-#define FLAG_ARM_LIBHF         0x0900
-#define FLAG_AARCH64_LIB64     0x0a00
+#include <stdint.h>
+
+#define FLAG_ANY                       -1
+#define FLAG_TYPE_MASK                 0x00ff
+#define FLAG_LIBC4                     0x0000
+#define FLAG_ELF                       0x0001
+#define FLAG_ELF_LIBC5                 0x0002
+#define FLAG_ELF_LIBC6                 0x0003
+#define FLAG_REQUIRED_MASK             0xff00
+#define FLAG_SPARC_LIB64               0x0100
+#define FLAG_IA64_LIB64                        0x0200
+#define FLAG_X8664_LIB64               0x0300
+#define FLAG_S390_LIB64                        0x0400
+#define FLAG_POWERPC_LIB64             0x0500
+#define FLAG_MIPS64_LIBN32             0x0600
+#define FLAG_MIPS64_LIBN64             0x0700
+#define FLAG_X8664_LIBX32              0x0800
+#define FLAG_ARM_LIBHF                 0x0900
+#define FLAG_AARCH64_LIB64             0x0a00
+#define FLAG_ARM_LIBSF                 0x0b00
+#define FLAG_MIPS_LIB32_NAN2008                0x0c00
+#define FLAG_MIPS64_LIBN32_NAN2008     0x0d00
+#define FLAG_MIPS64_LIBN64_NAN2008     0x0e00
 
 /* Name of auxiliary cache.  */
 #define _PATH_LDCONFIG_AUX_CACHE "/var/cache/ldconfig/aux-cache"
@@ -83,12 +89,6 @@ extern int opt_verbose;
 extern int opt_format;
 
 /* Prototypes for a few program-wide used functions.  */
-extern void *xmalloc (size_t n)
-  __attribute_malloc__ __attribute_alloc_size (1);
-extern void *xcalloc (size_t n, size_t s)
-  __attribute_malloc__ __attribute_alloc_size (1, 2);
-extern void *xrealloc (void *o, size_t n)
-  __attribute_malloc__ __attribute_alloc_size (2);
-extern char *xstrdup (const char *) __attribute_malloc__;
+#include <programs/xmalloc.h>
 
 #endif /* ! _LDCONFIG_H  */