summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
Diffstat (limited to 'libc')
-rw-r--r--libc/Makefile4
-rw-r--r--libc/inet/Makefile1
-rw-r--r--libc/inet/rpc/Makefile1
-rw-r--r--libc/misc/Makefile1
-rw-r--r--libc/misc/assert/Makefile1
-rw-r--r--libc/misc/ctype/Makefile1
-rw-r--r--libc/misc/dirent/Makefile1
-rw-r--r--libc/misc/file/Makefile1
-rw-r--r--libc/misc/fnmatch/Makefile1
-rw-r--r--libc/misc/glob/Makefile1
-rw-r--r--libc/misc/internals/Makefile1
-rw-r--r--libc/misc/locale/Makefile1
-rw-r--r--libc/misc/lsearch/Makefile1
-rw-r--r--libc/misc/mntent/Makefile1
-rw-r--r--libc/misc/regex/Makefile1
-rw-r--r--libc/misc/syslog/Makefile1
-rw-r--r--libc/misc/sysvipc/Makefile1
-rw-r--r--libc/misc/time/Makefile1
-rw-r--r--libc/misc/tsearch/Makefile1
-rw-r--r--libc/misc/utmp/Makefile1
-rw-r--r--libc/pwd_grp/Makefile1
-rw-r--r--libc/signal/Makefile1
-rw-r--r--libc/signal/allocrtsig.c5
-rw-r--r--libc/stdio/Makefile1
-rw-r--r--libc/stdio/getdelim.c8
-rw-r--r--libc/stdio/getline.c8
-rw-r--r--libc/stdlib/Makefile1
-rw-r--r--libc/stdlib/div.c8
-rw-r--r--libc/stdlib/ldiv.c9
-rw-r--r--libc/stdlib/malloc-930716/Makefile1
-rw-r--r--libc/stdlib/malloc-simple/Makefile1
-rw-r--r--libc/stdlib/malloc/Makefile1
-rw-r--r--libc/string/Makefile1
-rw-r--r--libc/string/strsignal.c20
-rw-r--r--libc/sysdeps/Makefile1
-rw-r--r--libc/sysdeps/linux/Makefile1
-rw-r--r--libc/sysdeps/linux/arm/Makefile1
-rw-r--r--libc/sysdeps/linux/arm/vfork.S9
-rw-r--r--libc/sysdeps/linux/common/Makefile4
-rw-r--r--libc/sysdeps/linux/common/create_module.c9
-rw-r--r--libc/sysdeps/linux/common/kernel_version.c9
-rw-r--r--libc/sysdeps/linux/common/statfix.c9
-rw-r--r--libc/sysdeps/linux/common/statfix64.c9
-rw-r--r--libc/sysdeps/linux/i386/Makefile1
-rw-r--r--libc/sysdeps/linux/i386/crt0.c9
-rw-r--r--libc/sysdeps/linux/m68k/Makefile1
-rw-r--r--libc/sysdeps/linux/m68k/crt0.c9
-rw-r--r--libc/sysdeps/linux/mips/Makefile1
-rw-r--r--libc/sysdeps/linux/powerpc/Makefile1
-rw-r--r--libc/sysdeps/linux/sparc/Makefile1
-rw-r--r--libc/sysdeps/linux/sparc/fork.c9
-rw-r--r--libc/sysdeps/linux/v850/Makefile26
-rw-r--r--libc/termios/Makefile1
-rw-r--r--libc/unistd/Makefile1
-rw-r--r--libc/unistd/daemon.c33
-rw-r--r--libc/unistd/getlogin.c9
56 files changed, 146 insertions, 97 deletions
diff --git a/libc/Makefile b/libc/Makefile
index 4001f2b2c..ee8dfef75 100644
--- a/libc/Makefile
+++ b/libc/Makefile
@@ -1,7 +1,7 @@
# Makefile for uClibc
#
-# Copyright (C) 2000, 2001 by Lineo, inc.
-# Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/inet/Makefile b/libc/inet/Makefile
index 62ae92847..c9157bb84 100644
--- a/libc/inet/Makefile
+++ b/libc/inet/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/inet/rpc/Makefile b/libc/inet/rpc/Makefile
index f2c63bb88..08782e1a3 100644
--- a/libc/inet/rpc/Makefile
+++ b/libc/inet/rpc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/Makefile b/libc/misc/Makefile
index aae04e184..eb0bf6ff0 100644
--- a/libc/misc/Makefile
+++ b/libc/misc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/assert/Makefile b/libc/misc/assert/Makefile
index ad08d3dc9..6dc004b7b 100644
--- a/libc/misc/assert/Makefile
+++ b/libc/misc/assert/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/ctype/Makefile b/libc/misc/ctype/Makefile
index e0343ba00..ee3bfd04e 100644
--- a/libc/misc/ctype/Makefile
+++ b/libc/misc/ctype/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/dirent/Makefile b/libc/misc/dirent/Makefile
index 43f233619..4b942dbdd 100644
--- a/libc/misc/dirent/Makefile
+++ b/libc/misc/dirent/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2001 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/file/Makefile b/libc/misc/file/Makefile
index 746b8fb3e..bb0ea02d8 100644
--- a/libc/misc/file/Makefile
+++ b/libc/misc/file/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/fnmatch/Makefile b/libc/misc/fnmatch/Makefile
index d5484f864..d3373a0f7 100644
--- a/libc/misc/fnmatch/Makefile
+++ b/libc/misc/fnmatch/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/glob/Makefile b/libc/misc/glob/Makefile
index d6ea09b7e..e4ecd078a 100644
--- a/libc/misc/glob/Makefile
+++ b/libc/misc/glob/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/internals/Makefile b/libc/misc/internals/Makefile
index 93faa1929..8e4d160a9 100644
--- a/libc/misc/internals/Makefile
+++ b/libc/misc/internals/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/locale/Makefile b/libc/misc/locale/Makefile
index e90ada064..77a54bdc4 100644
--- a/libc/misc/locale/Makefile
+++ b/libc/misc/locale/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/lsearch/Makefile b/libc/misc/lsearch/Makefile
index 6506c8c49..69475c960 100644
--- a/libc/misc/lsearch/Makefile
+++ b/libc/misc/lsearch/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/mntent/Makefile b/libc/misc/mntent/Makefile
index 297e19f1f..65fa34623 100644
--- a/libc/misc/mntent/Makefile
+++ b/libc/misc/mntent/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/regex/Makefile b/libc/misc/regex/Makefile
index 30d9d4da0..fe2920ba6 100644
--- a/libc/misc/regex/Makefile
+++ b/libc/misc/regex/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/syslog/Makefile b/libc/misc/syslog/Makefile
index deca334f2..f715eceec 100644
--- a/libc/misc/syslog/Makefile
+++ b/libc/misc/syslog/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/sysvipc/Makefile b/libc/misc/sysvipc/Makefile
index 8280137ca..b3c60cb03 100644
--- a/libc/misc/sysvipc/Makefile
+++ b/libc/misc/sysvipc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/time/Makefile b/libc/misc/time/Makefile
index a3f8ae231..5e953ab1c 100644
--- a/libc/misc/time/Makefile
+++ b/libc/misc/time/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/tsearch/Makefile b/libc/misc/tsearch/Makefile
index 3055f6458..5f10c4026 100644
--- a/libc/misc/tsearch/Makefile
+++ b/libc/misc/tsearch/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/misc/utmp/Makefile b/libc/misc/utmp/Makefile
index 438b5bd78..a3ef79bc7 100644
--- a/libc/misc/utmp/Makefile
+++ b/libc/misc/utmp/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/pwd_grp/Makefile b/libc/pwd_grp/Makefile
index d4dd97f01..f9b49c461 100644
--- a/libc/pwd_grp/Makefile
+++ b/libc/pwd_grp/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/signal/Makefile b/libc/signal/Makefile
index 4200e5e7b..9ee4249f7 100644
--- a/libc/signal/Makefile
+++ b/libc/signal/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/signal/allocrtsig.c b/libc/signal/allocrtsig.c
index b76be6452..0822999c8 100644
--- a/libc/signal/allocrtsig.c
+++ b/libc/signal/allocrtsig.c
@@ -1,8 +1,9 @@
/*
* Ignore/stub out real-time signal allocation.
*
- * Copyright (C) 2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2001 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
diff --git a/libc/stdio/Makefile b/libc/stdio/Makefile
index 81782d50f..70e18986f 100644
--- a/libc/stdio/Makefile
+++ b/libc/stdio/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/stdio/getdelim.c b/libc/stdio/getdelim.c
index 7cc1f8e84..fd073a4d2 100644
--- a/libc/stdio/getdelim.c
+++ b/libc/stdio/getdelim.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * getdelim for uClibc
+/* getdelim for uClibc
*
- * Copyright (C) 2000 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
diff --git a/libc/stdio/getline.c b/libc/stdio/getline.c
index 8b3331703..8f63bc6e0 100644
--- a/libc/stdio/getline.c
+++ b/libc/stdio/getline.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * getline for uClibc
+/* getline for uClibc
*
- * Copyright (C) 2000 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
diff --git a/libc/stdlib/Makefile b/libc/stdlib/Makefile
index c228cd9d6..8e36fd18e 100644
--- a/libc/stdlib/Makefile
+++ b/libc/stdlib/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/stdlib/div.c b/libc/stdlib/div.c
index 0992c8047..7ca9a2244 100644
--- a/libc/stdlib/div.c
+++ b/libc/stdlib/div.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * div for uClibc
+/* div for uClibc
*
- * Copyright (C) 2001 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
diff --git a/libc/stdlib/ldiv.c b/libc/stdlib/ldiv.c
index 10e614870..230b6a944 100644
--- a/libc/stdlib/ldiv.c
+++ b/libc/stdlib/ldiv.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * ldiv for uClibc
+/* ldiv for uClibc
*
- * Copyright (C) 2001 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <stdlib.h>
diff --git a/libc/stdlib/malloc-930716/Makefile b/libc/stdlib/malloc-930716/Makefile
index 208c1a68d..444581b9b 100644
--- a/libc/stdlib/malloc-930716/Makefile
+++ b/libc/stdlib/malloc-930716/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/stdlib/malloc-simple/Makefile b/libc/stdlib/malloc-simple/Makefile
index a84578a0a..35e53515d 100644
--- a/libc/stdlib/malloc-simple/Makefile
+++ b/libc/stdlib/malloc-simple/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/stdlib/malloc/Makefile b/libc/stdlib/malloc/Makefile
index a280144d3..2454a8a2b 100644
--- a/libc/stdlib/malloc/Makefile
+++ b/libc/stdlib/malloc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/string/Makefile b/libc/string/Makefile
index f2a183318..90a1b03a1 100644
--- a/libc/string/Makefile
+++ b/libc/string/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/string/strsignal.c b/libc/string/strsignal.c
index e482512f1..145488aa9 100644
--- a/libc/string/strsignal.c
+++ b/libc/string/strsignal.c
@@ -1,7 +1,21 @@
/* vi: set sw=4 ts=4: */
-/* Copyright (C) 2000 Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
- * This file is part of the uClinux and is distributed under the
- * GNU Library General Public License.
+/* strsignal for uClibc
+ *
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Library General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
diff --git a/libc/sysdeps/Makefile b/libc/sysdeps/Makefile
index cf35e3752..302041711 100644
--- a/libc/sysdeps/Makefile
+++ b/libc/sysdeps/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/Makefile b/libc/sysdeps/linux/Makefile
index db3fcb36c..751342782 100644
--- a/libc/sysdeps/linux/Makefile
+++ b/libc/sysdeps/linux/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/arm/Makefile b/libc/sysdeps/linux/arm/Makefile
index 1e08d094b..0ecfe496e 100644
--- a/libc/sysdeps/linux/arm/Makefile
+++ b/libc/sysdeps/linux/arm/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/arm/vfork.S b/libc/sysdeps/linux/arm/vfork.S
index 085946ae1..ccf815f12 100644
--- a/libc/sysdeps/linux/arm/vfork.S
+++ b/libc/sysdeps/linux/arm/vfork.S
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * fork for uClibc
+/* vfork for uClibc
*
- * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <asm/errno.h>
diff --git a/libc/sysdeps/linux/common/Makefile b/libc/sysdeps/linux/common/Makefile
index 4c6a41bf9..e7d92573b 100644
--- a/libc/sysdeps/linux/common/Makefile
+++ b/libc/sysdeps/linux/common/Makefile
@@ -1,7 +1,7 @@
-# Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk> Makefile
-# for uClibc
+# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/common/create_module.c b/libc/sysdeps/linux/common/create_module.c
index a20395ea0..ca306cd90 100644
--- a/libc/sysdeps/linux/common/create_module.c
+++ b/libc/sysdeps/linux/common/create_module.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * Syscalls for uClibc
+/* Syscalls for uClibc
*
- * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <errno.h>
diff --git a/libc/sysdeps/linux/common/kernel_version.c b/libc/sysdeps/linux/common/kernel_version.c
index 8e182a313..f31cd6186 100644
--- a/libc/sysdeps/linux/common/kernel_version.c
+++ b/libc/sysdeps/linux/common/kernel_version.c
@@ -1,7 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * Copyright (C) 1999,2000 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+/* find_kernel_revision for uClibc
+ *
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -16,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <stdio.h>
diff --git a/libc/sysdeps/linux/common/statfix.c b/libc/sysdeps/linux/common/statfix.c
index d06b9448e..3921deb0f 100644
--- a/libc/sysdeps/linux/common/statfix.c
+++ b/libc/sysdeps/linux/common/statfix.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * Convert from the kernel's version of struct stat to libc's version
+/* Convert from the kernel's version of struct stat to libc's version
*
- * Copyright (C) 2000, 2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
/* Pull in whatever this particular arch's kernel thinks the kernel version of
diff --git a/libc/sysdeps/linux/common/statfix64.c b/libc/sysdeps/linux/common/statfix64.c
index 23759d754..00dafc562 100644
--- a/libc/sysdeps/linux/common/statfix64.c
+++ b/libc/sysdeps/linux/common/statfix64.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * Convert from the kernel's version of struct stat to libc's version
+/* Convert from the kernel's version of struct stat to libc's version
*
- * Copyright (C) 2000, 2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
diff --git a/libc/sysdeps/linux/i386/Makefile b/libc/sysdeps/linux/i386/Makefile
index 531c78df9..4a333801f 100644
--- a/libc/sysdeps/linux/i386/Makefile
+++ b/libc/sysdeps/linux/i386/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/i386/crt0.c b/libc/sysdeps/linux/i386/crt0.c
index 0498d06e1..02805fdde 100644
--- a/libc/sysdeps/linux/i386/crt0.c
+++ b/libc/sysdeps/linux/i386/crt0.c
@@ -1,10 +1,8 @@
-/*
- * uClibc/sysdeps/linux/i386/crt0.S
+/* vi: set sw=4 ts=4: */
+/* uClibc/sysdeps/linux/i386/crt0.S
* Pull stuff off the stack and get uClibc moving.
*
- * Copyright (C) 2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
- * who is very pleased he managed to do this entirely in C code.
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -19,7 +17,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
extern void __uClibc_main(int argc,void *argv,void *envp);
diff --git a/libc/sysdeps/linux/m68k/Makefile b/libc/sysdeps/linux/m68k/Makefile
index 08906a909..ae81e2230 100644
--- a/libc/sysdeps/linux/m68k/Makefile
+++ b/libc/sysdeps/linux/m68k/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/m68k/crt0.c b/libc/sysdeps/linux/m68k/crt0.c
index 0498d06e1..3b6b2279b 100644
--- a/libc/sysdeps/linux/m68k/crt0.c
+++ b/libc/sysdeps/linux/m68k/crt0.c
@@ -1,10 +1,8 @@
-/*
- * uClibc/sysdeps/linux/i386/crt0.S
+/* vi: set sw=4 ts=4: */
+/* uClibc/sysdeps/linux/m68k/crt0.S
* Pull stuff off the stack and get uClibc moving.
*
- * Copyright (C) 2001 by Lineo, inc.
- * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
- * who is very pleased he managed to do this entirely in C code.
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -19,7 +17,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
extern void __uClibc_main(int argc,void *argv,void *envp);
diff --git a/libc/sysdeps/linux/mips/Makefile b/libc/sysdeps/linux/mips/Makefile
index 8e1414050..ae0dd5fcd 100644
--- a/libc/sysdeps/linux/mips/Makefile
+++ b/libc/sysdeps/linux/mips/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2001 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/powerpc/Makefile b/libc/sysdeps/linux/powerpc/Makefile
index cf9783dbd..3b737f740 100644
--- a/libc/sysdeps/linux/powerpc/Makefile
+++ b/libc/sysdeps/linux/powerpc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/sparc/Makefile b/libc/sysdeps/linux/sparc/Makefile
index 62e1a40d7..430324dae 100644
--- a/libc/sysdeps/linux/sparc/Makefile
+++ b/libc/sysdeps/linux/sparc/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/sysdeps/linux/sparc/fork.c b/libc/sysdeps/linux/sparc/fork.c
index af56d3675..6b3a34f98 100644
--- a/libc/sysdeps/linux/sparc/fork.c
+++ b/libc/sysdeps/linux/sparc/fork.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * fork for uClibc
+/* fork for uClibc
*
- * Copyright (C) 2000 by Lineo, inc. Written by Erik Andersen
- * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <errno.h>
diff --git a/libc/sysdeps/linux/v850/Makefile b/libc/sysdeps/linux/v850/Makefile
index 924b13b7c..dda7fba59 100644
--- a/libc/sysdeps/linux/v850/Makefile
+++ b/libc/sysdeps/linux/v850/Makefile
@@ -1,14 +1,26 @@
+# Makefile for uClibc
#
-# libc/sysdeps/linux/v850/Makefile -- Makefile for v850 machine-dependent dir
+# Copyright (C) 2001 NEC Corporation
+# Copyright (C) 2001 Miles Bader <miles@gnu.org>
+# Copyright (C) 2000 Lineo, inc.
#
-# Copyright (C) 2001 NEC Corporation
-# Copyright (C) 2001 Miles Bader <miles@gnu.org>
-# Copyright (C) 2000 Lineo, inc.
+# This program is free software; you can redistribute it and/or modify it under
+# the terms of the GNU Library General Public License as published by the Free
+# Software Foundation; either version 2 of the License, or (at your option) any
+# later version.
#
-# This file is subject to the terms and conditions of the GNU Library
-# General Public License. See the file COPYING.LIB in the main
-# directory of this archive for more details.
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
+# details.
#
+# You should have received a copy of the GNU Library General Public License
+# along with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+# Derived in part from the Linux-8086 C library, the GNU C Library, and several
+# other sundry sources. Files within this library are copyright by their
+# respective copyright holders.
TOPDIR=../../../../
include $(TOPDIR)Rules.mak
diff --git a/libc/termios/Makefile b/libc/termios/Makefile
index 77adfdcfc..d27c0a9af 100644
--- a/libc/termios/Makefile
+++ b/libc/termios/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/unistd/Makefile b/libc/unistd/Makefile
index 33905190f..d481bb5ad 100644
--- a/libc/unistd/Makefile
+++ b/libc/unistd/Makefile
@@ -1,6 +1,7 @@
# Makefile for uClibc
#
# Copyright (C) 2000 by Lineo, inc.
+# Copyright (C) 2000,2001 Erik Andersen <andersen@uclibc.org>
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU Library General Public License as published by the Free
diff --git a/libc/unistd/daemon.c b/libc/unistd/daemon.c
index d10c7931c..0cd827519 100644
--- a/libc/unistd/daemon.c
+++ b/libc/unistd/daemon.c
@@ -1,27 +1,24 @@
/* vi: set sw=4 ts=4: */
-/*
- * daemon implementation for uClibc
+/* daemon implementation for uClibc
*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
- * Modified for uClibc by Erik Andersen
- * <andersee@debian.org>, <andersen@lineo.com>
+ * Modified for uClibc by Erik Andersen <andersee@debian.org>
*
- * The uClibc Library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public License as
- * published by the Free Software Foundation; either version 2 of the
- * License, or (at your option) any later version.
- *
- * The GNU C Library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with the GNU C Library; see the file COPYING.LIB. If not,
- * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Library General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Library General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Original copyright notice is retained at the end of this file.
*/
diff --git a/libc/unistd/getlogin.c b/libc/unistd/getlogin.c
index 7f407dd13..505e6cf23 100644
--- a/libc/unistd/getlogin.c
+++ b/libc/unistd/getlogin.c
@@ -1,9 +1,9 @@
/* vi: set sw=4 ts=4: */
-/*
- * getlogin for uClibc
+/* getlogin for uClibc
*
- * Copyright (C) 2001 by Lineo, inc. Written by
- * Erik Andersen * <andersen@lineo.com>, <andersee@debian.org>
+ * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+ * Copyright (C) 2000,2001 by Erik Andersen <andersen@uclibc.org>
+ * Written by Erik Andersen <andersen@uclibc.org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as published by
@@ -18,7 +18,6 @@
* You should have received a copy of the GNU Library General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include <stdlib.h>