summaryrefslogtreecommitdiff
path: root/libc/nscd
diff options
context:
space:
mode:
Diffstat (limited to 'libc/nscd')
-rw-r--r--libc/nscd/Makefile2
-rw-r--r--libc/nscd/aicache.c2
-rw-r--r--libc/nscd/cache.c2
-rw-r--r--libc/nscd/connections.c2
-rw-r--r--libc/nscd/dbg_log.c2
-rw-r--r--libc/nscd/dbg_log.h2
-rw-r--r--libc/nscd/gai.c2
-rw-r--r--libc/nscd/getgrgid_r.c2
-rw-r--r--libc/nscd/getgrnam_r.c2
-rw-r--r--libc/nscd/gethstbyad_r.c2
-rw-r--r--libc/nscd/gethstbynm3_r.c2
-rw-r--r--libc/nscd/getpwnam_r.c2
-rw-r--r--libc/nscd/getpwuid_r.c2
-rw-r--r--libc/nscd/getsrvbynm_r.c2
-rw-r--r--libc/nscd/getsrvbypt_r.c2
-rw-r--r--libc/nscd/grpcache.c2
-rw-r--r--libc/nscd/hstcache.c2
-rw-r--r--libc/nscd/initgrcache.c2
-rw-r--r--libc/nscd/mem.c2
-rw-r--r--libc/nscd/netgroupcache.c2
-rw-r--r--libc/nscd/nscd-client.h2
-rw-r--r--libc/nscd/nscd.c4
-rw-r--r--libc/nscd/nscd.h2
-rw-r--r--libc/nscd/nscd_conf.c2
-rw-r--r--libc/nscd/nscd_getai.c3
-rw-r--r--libc/nscd/nscd_getgr_r.c3
-rw-r--r--libc/nscd/nscd_gethst_r.c2
-rw-r--r--libc/nscd/nscd_getpw_r.c3
-rw-r--r--libc/nscd/nscd_getserv_r.c2
-rw-r--r--libc/nscd/nscd_helper.c2
-rw-r--r--libc/nscd/nscd_initgroups.c2
-rw-r--r--libc/nscd/nscd_netgroup.c2
-rw-r--r--libc/nscd/nscd_proto.h2
-rw-r--r--libc/nscd/nscd_setup_thread.c2
-rw-r--r--libc/nscd/nscd_stat.c2
-rw-r--r--libc/nscd/pwdcache.c2
-rw-r--r--libc/nscd/selinux.c2
-rw-r--r--libc/nscd/selinux.h2
-rw-r--r--libc/nscd/servicescache.c2
39 files changed, 40 insertions, 43 deletions
diff --git a/libc/nscd/Makefile b/libc/nscd/Makefile
index bf312aee0..535da43d5 100644
--- a/libc/nscd/Makefile
+++ b/libc/nscd/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2012 Free Software Foundation, Inc.
+# Copyright (C) 1998-2013 Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
diff --git a/libc/nscd/aicache.c b/libc/nscd/aicache.c
index a3de6368b..23dcf80af 100644
--- a/libc/nscd/aicache.c
+++ b/libc/nscd/aicache.c
@@ -1,5 +1,5 @@
/* Cache handling for host lookup.
- Copyright (C) 2004-2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/cache.c b/libc/nscd/cache.c
index 96ade5326..699447a85 100644
--- a/libc/nscd/cache.c
+++ b/libc/nscd/cache.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998, 1999, 2003-2009, 2011 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/connections.c b/libc/nscd/connections.c
index 77b9ac40a..f6e232863 100644
--- a/libc/nscd/connections.c
+++ b/libc/nscd/connections.c
@@ -1,5 +1,5 @@
/* Inner loops of cache daemon.
- Copyright (C) 1998-2012 Free Software Foundation, Inc.
+ Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/dbg_log.c b/libc/nscd/dbg_log.c
index 1d1a44051..0ac8a1103 100644
--- a/libc/nscd/dbg_log.c
+++ b/libc/nscd/dbg_log.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998, 2000, 2004, 2005, 2009 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
diff --git a/libc/nscd/dbg_log.h b/libc/nscd/dbg_log.h
index 057fd4fc7..0c35a30f0 100644
--- a/libc/nscd/dbg_log.h
+++ b/libc/nscd/dbg_log.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998, 2000, 2004 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
diff --git a/libc/nscd/gai.c b/libc/nscd/gai.c
index 060933293..7db5aa9d2 100644
--- a/libc/nscd/gai.c
+++ b/libc/nscd/gai.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004-2012 Free Software Foundation, Inc.
+/* Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 2004.
diff --git a/libc/nscd/getgrgid_r.c b/libc/nscd/getgrgid_r.c
index 5b433321b..f6b8373a9 100644
--- a/libc/nscd/getgrgid_r.c
+++ b/libc/nscd/getgrgid_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/getgrnam_r.c b/libc/nscd/getgrnam_r.c
index aff6fcc53..f948ef22e 100644
--- a/libc/nscd/getgrnam_r.c
+++ b/libc/nscd/getgrnam_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/gethstbyad_r.c b/libc/nscd/gethstbyad_r.c
index c0988b862..60633e653 100644
--- a/libc/nscd/gethstbyad_r.c
+++ b/libc/nscd/gethstbyad_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/gethstbynm3_r.c b/libc/nscd/gethstbynm3_r.c
index a7d25548a..8143537d7 100644
--- a/libc/nscd/gethstbynm3_r.c
+++ b/libc/nscd/gethstbynm3_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/getpwnam_r.c b/libc/nscd/getpwnam_r.c
index 06e57044b..d22d35b31 100644
--- a/libc/nscd/getpwnam_r.c
+++ b/libc/nscd/getpwnam_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/getpwuid_r.c b/libc/nscd/getpwuid_r.c
index ce8e2dfef..8be7853d3 100644
--- a/libc/nscd/getpwuid_r.c
+++ b/libc/nscd/getpwuid_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/getsrvbynm_r.c b/libc/nscd/getsrvbynm_r.c
index a1c25c705..29e0a2504 100644
--- a/libc/nscd/getsrvbynm_r.c
+++ b/libc/nscd/getsrvbynm_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/getsrvbypt_r.c b/libc/nscd/getsrvbypt_r.c
index 3c05771f1..5d6c6fb57 100644
--- a/libc/nscd/getsrvbypt_r.c
+++ b/libc/nscd/getsrvbypt_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
diff --git a/libc/nscd/grpcache.c b/libc/nscd/grpcache.c
index f0dad4d54..d25d8e92f 100644
--- a/libc/nscd/grpcache.c
+++ b/libc/nscd/grpcache.c
@@ -1,5 +1,5 @@
/* Cache handling for group lookup.
- Copyright (C) 1998-2008, 2009, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/hstcache.c b/libc/nscd/hstcache.c
index a7ecdc7e9..ca2145212 100644
--- a/libc/nscd/hstcache.c
+++ b/libc/nscd/hstcache.c
@@ -1,5 +1,5 @@
/* Cache handling for host lookup.
- Copyright (C) 1998-2008, 2009, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/initgrcache.c b/libc/nscd/initgrcache.c
index 255b121dd..196407c87 100644
--- a/libc/nscd/initgrcache.c
+++ b/libc/nscd/initgrcache.c
@@ -1,5 +1,5 @@
/* Cache handling for host lookup.
- Copyright (C) 2004-2006, 2008, 2009, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/mem.c b/libc/nscd/mem.c
index 3811b447b..392fe5bbb 100644
--- a/libc/nscd/mem.c
+++ b/libc/nscd/mem.c
@@ -1,5 +1,5 @@
/* Cache memory handling.
- Copyright (C) 2004-2006, 2008, 2009, 2012 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/netgroupcache.c b/libc/nscd/netgroupcache.c
index 70cf9c14b..2d6c5aa45 100644
--- a/libc/nscd/netgroupcache.c
+++ b/libc/nscd/netgroupcache.c
@@ -1,5 +1,5 @@
/* Cache handling for netgroup lookup.
- Copyright (C) 2011-2012 Free Software Foundation, Inc.
+ Copyright (C) 2011-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
diff --git a/libc/nscd/nscd-client.h b/libc/nscd/nscd-client.h
index aef76e8fd..11964f607 100644
--- a/libc/nscd/nscd-client.h
+++ b/libc/nscd/nscd-client.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998-2012 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
diff --git a/libc/nscd/nscd.c b/libc/nscd/nscd.c
index 6adb3d819..26cf3c269 100644
--- a/libc/nscd/nscd.c
+++ b/libc/nscd/nscd.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998-2012 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
@@ -476,7 +476,7 @@ print_version (FILE *stream, struct argp_state *state)
Copyright (C) %s Free Software Foundation, Inc.\n\
This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
-"), "2012");
+"), "2013");
fprintf (stream, gettext ("Written by %s.\n"),
"Thorsten Kukuk and Ulrich Drepper");
}
diff --git a/libc/nscd/nscd.h b/libc/nscd/nscd.h
index 86ac27855..46d043328 100644
--- a/libc/nscd/nscd.h
+++ b/libc/nscd/nscd.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998-2001, 2003-2009, 2011, 2012 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
diff --git a/libc/nscd/nscd_conf.c b/libc/nscd/nscd_conf.c
index 07faf44a5..30cc40382 100644
--- a/libc/nscd/nscd_conf.c
+++ b/libc/nscd/nscd_conf.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998, 2000, 2003-2008, 2011 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
diff --git a/libc/nscd/nscd_getai.c b/libc/nscd/nscd_getai.c
index 40fe3d0ef..236c93947 100644
--- a/libc/nscd/nscd_getai.c
+++ b/libc/nscd/nscd_getai.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009
- Free Software Foundation, Inc.
+/* Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/nscd_getgr_r.c b/libc/nscd/nscd_getgr_r.c
index 54372e4ef..dbcaac934 100644
--- a/libc/nscd/nscd_getgr_r.c
+++ b/libc/nscd/nscd_getgr_r.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 1998-2000, 2002-2005, 2006, 2007, 2009
- Free Software Foundation, Inc.
+/* Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
diff --git a/libc/nscd/nscd_gethst_r.c b/libc/nscd/nscd_gethst_r.c
index d64ad2e7b..4ede24b19 100644
--- a/libc/nscd/nscd_gethst_r.c
+++ b/libc/nscd/nscd_gethst_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/nscd_getpw_r.c b/libc/nscd/nscd_getpw_r.c
index e405057d1..46a9108b9 100644
--- a/libc/nscd/nscd_getpw_r.c
+++ b/libc/nscd/nscd_getpw_r.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 1998, 1999, 2003, 2004, 2005, 2007, 2009
- Free Software Foundation, Inc.
+/* Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@uni-paderborn.de>, 1998.
diff --git a/libc/nscd/nscd_getserv_r.c b/libc/nscd/nscd_getserv_r.c
index acf7e22f8..f79bd42e1 100644
--- a/libc/nscd/nscd_getserv_r.c
+++ b/libc/nscd/nscd_getserv_r.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2007, 2009, 2011 Free Software Foundation, Inc.
+/* Copyright (C) 2007-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2007.
diff --git a/libc/nscd/nscd_helper.c b/libc/nscd/nscd_helper.c
index 96fb93db7..ba5889356 100644
--- a/libc/nscd/nscd_helper.c
+++ b/libc/nscd/nscd_helper.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2012 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/nscd_initgroups.c b/libc/nscd/nscd_initgroups.c
index 921a795b4..19e3d79aa 100644
--- a/libc/nscd/nscd_initgroups.c
+++ b/libc/nscd/nscd_initgroups.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/nscd_netgroup.c b/libc/nscd/nscd_netgroup.c
index 8f6925eca..cac4ebfcd 100644
--- a/libc/nscd/nscd_netgroup.c
+++ b/libc/nscd/nscd_netgroup.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2011 Free Software Foundation, Inc.
+/* Copyright (C) 2011-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gmail.com>, 2011.
diff --git a/libc/nscd/nscd_proto.h b/libc/nscd/nscd_proto.h
index 25a69dac6..d0c6584e4 100644
--- a/libc/nscd/nscd_proto.h
+++ b/libc/nscd/nscd_proto.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998-2000,2002,2004,2007,2011 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998.
diff --git a/libc/nscd/nscd_setup_thread.c b/libc/nscd/nscd_setup_thread.c
index d4fd27bf6..037652edf 100644
--- a/libc/nscd/nscd_setup_thread.c
+++ b/libc/nscd/nscd_setup_thread.c
@@ -1,5 +1,5 @@
/* Setup of nscd worker threads. Stub verison.
- Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@redhat.com>, 2004.
diff --git a/libc/nscd/nscd_stat.c b/libc/nscd/nscd_stat.c
index cbc865d63..3df427313 100644
--- a/libc/nscd/nscd_stat.c
+++ b/libc/nscd/nscd_stat.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 1998, 2003, 2004, 2005, 2010 Free Software Foundation, Inc.
+/* Copyright (c) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
diff --git a/libc/nscd/pwdcache.c b/libc/nscd/pwdcache.c
index a8ea407aa..ef492b58c 100644
--- a/libc/nscd/pwdcache.c
+++ b/libc/nscd/pwdcache.c
@@ -1,5 +1,5 @@
/* Cache handling for passwd lookup.
- Copyright (C) 1998-2008, 2009, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 1998-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
diff --git a/libc/nscd/selinux.c b/libc/nscd/selinux.c
index 18b95730b..0866c4495 100644
--- a/libc/nscd/selinux.c
+++ b/libc/nscd/selinux.c
@@ -1,5 +1,5 @@
/* SELinux access controls for nscd.
- Copyright (C) 2004,2005,2006,2007,2009,2011 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Matthew Rickard <mjricka@epoch.ncsc.mil>, 2004.
diff --git a/libc/nscd/selinux.h b/libc/nscd/selinux.h
index 596b954d2..baf249d6a 100644
--- a/libc/nscd/selinux.h
+++ b/libc/nscd/selinux.h
@@ -1,5 +1,5 @@
/* Header for nscd SELinux access controls.
- Copyright (C) 2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+ Copyright (C) 2004-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Matthew Rickard <mjricka@epoch.ncsc.mil>, 2004.
diff --git a/libc/nscd/servicescache.c b/libc/nscd/servicescache.c
index 0e7520de2..d29cde7d6 100644
--- a/libc/nscd/servicescache.c
+++ b/libc/nscd/servicescache.c
@@ -1,5 +1,5 @@
/* Cache handling for services lookup.
- Copyright (C) 2007, 2008, 2009, 2011, 2012 Free Software Foundation, Inc.
+ Copyright (C) 2007-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@drepper.com>, 2007.