summaryrefslogtreecommitdiff
path: root/libc/dlfcn
diff options
context:
space:
mode:
Diffstat (limited to 'libc/dlfcn')
-rw-r--r--libc/dlfcn/Makefile2
-rw-r--r--libc/dlfcn/dladdr.c3
-rw-r--r--libc/dlfcn/dladdr1.c2
-rw-r--r--libc/dlfcn/dlclose.c3
-rw-r--r--libc/dlfcn/dlerror.c2
-rw-r--r--libc/dlfcn/dlfcn.c2
-rw-r--r--libc/dlfcn/dlfcn.h3
-rw-r--r--libc/dlfcn/dlinfo.c2
-rw-r--r--libc/dlfcn/dlmopen.c2
-rw-r--r--libc/dlfcn/dlopen.c2
-rw-r--r--libc/dlfcn/dlopenold.c2
-rw-r--r--libc/dlfcn/dlsym.c2
-rw-r--r--libc/dlfcn/dlvsym.c2
-rw-r--r--libc/dlfcn/errmsg1.c2
-rw-r--r--libc/dlfcn/errmsg1mod.c2
-rw-r--r--libc/dlfcn/eval.c2
-rw-r--r--libc/dlfcn/glreflib1.c2
-rw-r--r--libc/dlfcn/glreflib2.c2
-rw-r--r--libc/dlfcn/glrefmain.c2
-rw-r--r--libc/dlfcn/modatexit.c2
-rw-r--r--libc/dlfcn/modcxaatexit.c2
-rw-r--r--libc/dlfcn/tst-dladdr.c2
-rw-r--r--libc/dlfcn/tst-dlinfo.c2
-rw-r--r--libc/dlfcn/tstatexit.c2
-rw-r--r--libc/dlfcn/tstcxaatexit.c2
25 files changed, 25 insertions, 28 deletions
diff --git a/libc/dlfcn/Makefile b/libc/dlfcn/Makefile
index ff42c7d9e..eac58a53d 100644
--- a/libc/dlfcn/Makefile
+++ b/libc/dlfcn/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 1995-2006, 2010, 2012 Free Software Foundation, Inc.
+# Copyright (C) 1995-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/dlfcn/dladdr.c b/libc/dlfcn/dladdr.c
index d7eb169fa..9c09f70a4 100644
--- a/libc/dlfcn/dladdr.c
+++ b/libc/dlfcn/dladdr.c
@@ -1,6 +1,5 @@
/* Locate the shared object symbol nearest a given address.
- Copyright (C) 1996, 1997, 1998, 1999, 2003, 2004
- Free Software Foundation, Inc.
+ Copyright (C) 1996-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/dlfcn/dladdr1.c b/libc/dlfcn/dladdr1.c
index fec508335..3b2f3f30a 100644
--- a/libc/dlfcn/dladdr1.c
+++ b/libc/dlfcn/dladdr1.c
@@ -1,5 +1,5 @@
/* Locate the shared object symbol nearest a given address.
- Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+ Copyright (C) 2003-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/dlfcn/dlclose.c b/libc/dlfcn/dlclose.c
index b92611d3a..df34a0c38 100644
--- a/libc/dlfcn/dlclose.c
+++ b/libc/dlfcn/dlclose.c
@@ -1,6 +1,5 @@
/* Close a handle opened by `dlopen'.
- Copyright (C) 1995, 1996, 1997, 1998, 1999, 2004
- Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlerror.c b/libc/dlfcn/dlerror.c
index c30b4f1d3..0ae2bbe23 100644
--- a/libc/dlfcn/dlerror.c
+++ b/libc/dlfcn/dlerror.c
@@ -1,5 +1,5 @@
/* Return error detail for failing <dlfcn.h> functions.
- Copyright (C) 1995-2012 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlfcn.c b/libc/dlfcn/dlfcn.c
index 3ee447e0b..14d8360fc 100644
--- a/libc/dlfcn/dlfcn.c
+++ b/libc/dlfcn/dlfcn.c
@@ -1,5 +1,5 @@
/* Load a shared object at run time.
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005-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/dlfcn/dlfcn.h b/libc/dlfcn/dlfcn.h
index fc32dd4c6..241b55416 100644
--- a/libc/dlfcn/dlfcn.h
+++ b/libc/dlfcn/dlfcn.h
@@ -1,6 +1,5 @@
/* User functions for run-time dynamic loading.
- Copyright (C) 1995-2001,2003,2004,2006,2009,2012
- Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlinfo.c b/libc/dlfcn/dlinfo.c
index d26ebd9ee..91795d380 100644
--- a/libc/dlfcn/dlinfo.c
+++ b/libc/dlfcn/dlinfo.c
@@ -1,5 +1,5 @@
/* dlinfo -- Get information from the dynamic linker.
- Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+ Copyright (C) 2003-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/dlfcn/dlmopen.c b/libc/dlfcn/dlmopen.c
index a411cd8a1..5e32f5dff 100644
--- a/libc/dlfcn/dlmopen.c
+++ b/libc/dlfcn/dlmopen.c
@@ -1,5 +1,5 @@
/* Load a shared object at run time.
- Copyright (C) 1995-2000,2003,2004,2006 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlopen.c b/libc/dlfcn/dlopen.c
index 4b5517700..899a4f58d 100644
--- a/libc/dlfcn/dlopen.c
+++ b/libc/dlfcn/dlopen.c
@@ -1,5 +1,5 @@
/* Load a shared object at run time.
- Copyright (C) 1995-2000,2003,2004,2005 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlopenold.c b/libc/dlfcn/dlopenold.c
index 670119f00..fa587af98 100644
--- a/libc/dlfcn/dlopenold.c
+++ b/libc/dlfcn/dlopenold.c
@@ -1,5 +1,5 @@
/* Load a shared object at run time.
- Copyright (C) 1995-1999, 2000, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlsym.c b/libc/dlfcn/dlsym.c
index 71a54af43..ad5eee62a 100644
--- a/libc/dlfcn/dlsym.c
+++ b/libc/dlfcn/dlsym.c
@@ -1,5 +1,5 @@
/* Look up a symbol in a shared object loaded by `dlopen'.
- Copyright (C) 1995-2000, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/dlvsym.c b/libc/dlfcn/dlvsym.c
index 7aa1063a4..fd9526772 100644
--- a/libc/dlfcn/dlvsym.c
+++ b/libc/dlfcn/dlvsym.c
@@ -1,5 +1,5 @@
/* Look up a versioned symbol in a shared object loaded by `dlopen'.
- Copyright (C) 1995-2000, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1995-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/dlfcn/errmsg1.c b/libc/dlfcn/errmsg1.c
index 1dea8b892..6ac0558a9 100644
--- a/libc/dlfcn/errmsg1.c
+++ b/libc/dlfcn/errmsg1.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000-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/dlfcn/errmsg1mod.c b/libc/dlfcn/errmsg1mod.c
index fc21cf5c9..dabae7772 100644
--- a/libc/dlfcn/errmsg1mod.c
+++ b/libc/dlfcn/errmsg1mod.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000-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/dlfcn/eval.c b/libc/dlfcn/eval.c
index f40f5eab2..533451158 100644
--- a/libc/dlfcn/eval.c
+++ b/libc/dlfcn/eval.c
@@ -1,5 +1,5 @@
/* You don't really want to know what this hack is for.
- Copyright (C) 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1996-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/dlfcn/glreflib1.c b/libc/dlfcn/glreflib1.c
index e6bf7961f..1e951d12f 100644
--- a/libc/dlfcn/glreflib1.c
+++ b/libc/dlfcn/glreflib1.c
@@ -1,5 +1,5 @@
/* Test for dependency tracking added by relocations.
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright (C) 2000-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/dlfcn/glreflib2.c b/libc/dlfcn/glreflib2.c
index dba8d5c28..afb95357c 100644
--- a/libc/dlfcn/glreflib2.c
+++ b/libc/dlfcn/glreflib2.c
@@ -1,5 +1,5 @@
/* Test for dependency tracking added by relocations.
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright (C) 2000-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/dlfcn/glrefmain.c b/libc/dlfcn/glrefmain.c
index be024cf99..dc72d381a 100644
--- a/libc/dlfcn/glrefmain.c
+++ b/libc/dlfcn/glrefmain.c
@@ -1,5 +1,5 @@
/* Test for dependency tracking added by relocations.
- Copyright (C) 2000 Free Software Foundation, Inc.
+ Copyright (C) 2000-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/dlfcn/modatexit.c b/libc/dlfcn/modatexit.c
index 43c5aa48b..f2c473f40 100644
--- a/libc/dlfcn/modatexit.c
+++ b/libc/dlfcn/modatexit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2001-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/dlfcn/modcxaatexit.c b/libc/dlfcn/modcxaatexit.c
index bf4388ffc..8c9ac8b67 100644
--- a/libc/dlfcn/modcxaatexit.c
+++ b/libc/dlfcn/modcxaatexit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2001-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/dlfcn/tst-dladdr.c b/libc/dlfcn/tst-dladdr.c
index 1301b0d0f..05aff5065 100644
--- a/libc/dlfcn/tst-dladdr.c
+++ b/libc/dlfcn/tst-dladdr.c
@@ -1,5 +1,5 @@
/* Test for dladdr.
- Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 2000-2013 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Volkmar Sieh <vs@caldera.de> and Andreas Jaeger <aj@suse.de>.
diff --git a/libc/dlfcn/tst-dlinfo.c b/libc/dlfcn/tst-dlinfo.c
index 931851b4c..c05da7a4f 100644
--- a/libc/dlfcn/tst-dlinfo.c
+++ b/libc/dlfcn/tst-dlinfo.c
@@ -1,5 +1,5 @@
/* Test for dlinfo.
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003-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/dlfcn/tstatexit.c b/libc/dlfcn/tstatexit.c
index ea590206a..012772e3e 100644
--- a/libc/dlfcn/tstatexit.c
+++ b/libc/dlfcn/tstatexit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2001-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/dlfcn/tstcxaatexit.c b/libc/dlfcn/tstcxaatexit.c
index 3bcca48a0..ad70652c7 100644
--- a/libc/dlfcn/tstcxaatexit.c
+++ b/libc/dlfcn/tstcxaatexit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2001 Free Software Foundation, Inc.
+/* Copyright (C) 2001-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