OSDN Git Service

fixup my copyright notice, trim stale remnants of older notices which
authorEric Andersen <andersen@codepoet.org>
Wed, 5 Jul 2006 18:38:37 +0000 (18:38 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 5 Jul 2006 18:38:37 +0000 (18:38 -0000)
I had clearly run search/replace on that were cluttering things up.

15 files changed:
libc/stdlib/div.c
libc/stdlib/rand.c
libc/sysdeps/linux/arm/vfork.S
libc/unistd/getlogin.c
libcrypt/crypt.c
libutil/logwtmp.c
test/args/arg_test.c
test/assert/assert.c
test/ctype/ctype.c
test/signal/signal.c
test/testsuite.h
test/unistd/clone.c
test/unistd/fork.c
test/unistd/getcwd.c
test/unistd/vfork.c

index 7ca9a22..6c59595 100644 (file)
@@ -1,24 +1,8 @@
 /* vi: set sw=4 ts=4: */
-/* div 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
- * 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
- *
+/*
+ * div for uClibc
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
 #include <stdlib.h>
index cdf58ec..03323f5 100644 (file)
@@ -1,28 +1,16 @@
-/* rand.c
- *
- * Written by Erik Andersen <andersee@debian.org> 
- *
- * This 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.  
- *
- * This 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 this library; see the file COPYING.LIB.  If not, 
- * write to the Free Software Foundation, Inc., 675 Mass Ave, 
- * Cambridge, MA 02139, USA.  */
+/* vi: set sw=4 ts=4: */
+/*
+ * rand for uClibc
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
 
 #include <stdlib.h>
 
 libc_hidden_proto(random)
 
-int rand (void) 
+int rand (void)
 {
-    return((int)random());
+       return((int)random());
 }
 
index 5092023..e9f63d4 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
-/* vfork for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+/*
+ * vfork for uClibc
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
index ece855e..42438b3 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
-/* getlogin for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
+/*
+ * getlogin for uClibc
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
index a64b4a5..5d8215f 100644 (file)
@@ -1,13 +1,9 @@
 /* vi: set sw=4 ts=4: */
 /*
  * crypt() for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
- *
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
-/* Written by Erik Andersen <andersen@uclibc.org> */
 
 #define __FORCE_GLIBC
 #include <crypt.h>
index c6a8530..85b770c 100644 (file)
@@ -1,22 +1,9 @@
-/* wtmp support rubbish (i.e. complete crap)
-
-   Written by Erik Andersen <andersee@debian.org> 
-
-   The GNU C Library is free software
-   This library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Lesser General Public
-   License as published by the Free Software Foundation; either
-   version 2.1 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
-   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.  */
+/* vi: set sw=4 ts=4: */
+/*
+ * wtmp support rubbish (i.e. complete crap)
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
 
 #include <string.h>
 #include <sys/time.h>
index 1e9bc7f..86f3157 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Test application for argc and argv handling
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -27,7 +24,7 @@ int main(int argc, char **argv)
                }
        }
 #endif
-       
+
        printf("argc=%d\n", argc);
 
        for(i=0;i<argc;i++) {
index d9f4e08..0956094 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Test application for functions defined in ctype.h
- *
- * 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>
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -25,7 +22,7 @@ void aborthandler(int junk)
 int main( int argc, char **argv)
 {
        signal(SIGABRT, aborthandler);
-       
+
        init_testsuite("Testing functions defined in assert.h:\n\t");
 
        got_abort=0;
index 72c1646..352b2d2 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Test application for functions defined in ctype.h
- *
- * 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>
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
index b26c74d..6e6f04a 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * signal testing function for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
index 79b6a1a..c458768 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Some simple macros for use in test applications.
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -32,13 +29,13 @@ void error_msg(int result, int line, const char* file, const char* command)
 
        printf("\nFAILED TEST %lu: \n\t%s\n", (unsigned long)test_number, command);
        printf("AT LINE: %d, FILE: %s\n\n", line, file);
-}   
+}
 
 void success_msg(int result, const char* command)
 {
 #if 0
        printf("passed test: %s == 0\n", command);
-#endif 
+#endif
 }
 
 void done_testing(void)
@@ -99,5 +96,5 @@ void init_testsuite(const char* testname)
        } while (0)
 
 #define STR_CMD(cmd) cmd
-               
+
 #endif /* TESTSUITE_H */
index a8d4a61..bc08c94 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * clone test for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -36,7 +33,7 @@ int clone_main(void *arg)
        return input + 20;
 }
 
-int main(void) 
+int main(void)
 {
        int clone1, clone2, clone3;
        char clone1_stack[8192], clone2_stack[8192], clone3_stack[8192];
index 6f46dac..b163c0e 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * fork test for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -26,7 +23,7 @@ void child_handler(int sig)
        fprintf(stderr, "I got a SIGCHLD\n");
 }
 
-int main(void) 
+int main(void)
 {
        pid_t pid1, pid2, pid3;
        int status, result, wpid;
index 21986cf..bcecec7 100644 (file)
@@ -1,10 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * fork test for uClibc
- *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -13,7 +10,7 @@
 #include <stdlib.h>
 #include <unistd.h>
 
-int main(void) 
+int main(void)
 {
        char *foo;
        char junk[12];
index 639e466..2955839 100644 (file)
@@ -1,9 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * vfork test for uClibc
- *
  * Copyright (C) 2000-2006 by Erik Andersen <andersen@uclibc.org>
- * Written by Erik Andersen <andersen@uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -15,7 +13,7 @@
 #include <sys/types.h>
 
 
-int main(void) 
+int main(void)
 {
        pid_t pid;
        int status, wpid;