svn commit: trunk/uClibc: libc/stdlib libc/sysdeps/linux/arm libc/ etc...

andersen at uclibc.org andersen at uclibc.org
Wed Jul 5 18:38:39 UTC 2006


Author: andersen
Date: 2006-07-05 11:38:37 -0700 (Wed, 05 Jul 2006)
New Revision: 15636

Log:
fixup my copyright notice, trim stale remnants of older notices which
I had clearly run search/replace on that were cluttering things up.


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


Changeset:
Modified: trunk/uClibc/libc/stdlib/div.c
===================================================================
--- trunk/uClibc/libc/stdlib/div.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libc/stdlib/div.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at 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 at uclibc.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
 #include <stdlib.h>

Modified: trunk/uClibc/libc/stdlib/rand.c
===================================================================
--- trunk/uClibc/libc/stdlib/rand.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libc/stdlib/rand.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -1,28 +1,16 @@
-/* rand.c
- *
- * Written by Erik Andersen <andersee at 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 at 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());
 }
 

Modified: trunk/uClibc/libc/sysdeps/linux/arm/vfork.S
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/arm/vfork.S	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libc/sysdeps/linux/arm/vfork.S	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 

Modified: trunk/uClibc/libc/unistd/getlogin.c
===================================================================
--- trunk/uClibc/libc/unistd/getlogin.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libc/unistd/getlogin.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 

Modified: trunk/uClibc/libcrypt/crypt.c
===================================================================
--- trunk/uClibc/libcrypt/crypt.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libcrypt/crypt.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- *
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen at uclibc.org>
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
-/* Written by Erik Andersen <andersen at uclibc.org> */
 
 #define __FORCE_GLIBC
 #include <crypt.h>

Modified: trunk/uClibc/libutil/logwtmp.c
===================================================================
--- trunk/uClibc/libutil/logwtmp.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/libutil/logwtmp.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -1,23 +1,10 @@
-/* wtmp support rubbish (i.e. complete crap)
+/* vi: set sw=4 ts=4: */
+/*
+ * wtmp support rubbish (i.e. complete crap)
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen at uclibc.org>
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
 
-   Written by Erik Andersen <andersee at 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.  */
-
 #include <string.h>
 #include <sys/time.h>
 #include <time.h>

Modified: trunk/uClibc/test/args/arg_test.c
===================================================================
--- trunk/uClibc/test/args/arg_test.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/args/arg_test.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -27,7 +24,7 @@
 		}
 	}
 #endif
-	
+
 	printf("argc=%d\n", argc);
 
 	for(i=0;i<argc;i++) {

Modified: trunk/uClibc/test/assert/assert.c
===================================================================
--- trunk/uClibc/test/assert/assert.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/assert/assert.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -1,11 +1,8 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Test application for functions defined in ctype.h
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen at uclibc.org>
  *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 2000,2001 by Erik Andersen <andersen at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 
@@ -25,7 +22,7 @@
 int main( int argc, char **argv)
 {
 	signal(SIGABRT, aborthandler);
-	
+
 	init_testsuite("Testing functions defined in assert.h:\n\t");
 
 	got_abort=0;

Modified: trunk/uClibc/test/ctype/ctype.c
===================================================================
--- trunk/uClibc/test/ctype/ctype.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/ctype/ctype.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -1,11 +1,8 @@
 /* vi: set sw=4 ts=4: */
 /*
  * Test application for functions defined in ctype.h
+ * Copyright (C) 2000-2006 by Erik Andersen <andersen at uclibc.org>
  *
- * Copyright (C) 2000 by Lineo, inc. and Erik Andersen
- * Copyright (C) 2000,2001 by Erik Andersen <andersen at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
- *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
 

Modified: trunk/uClibc/test/signal/signal.c
===================================================================
--- trunk/uClibc/test/signal/signal.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/signal/signal.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */

Modified: trunk/uClibc/test/testsuite.h
===================================================================
--- trunk/uClibc/test/testsuite.h	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/testsuite.h	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -32,13 +29,13 @@
 
 	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 @@
 	} while (0)
 
 #define STR_CMD(cmd) cmd
-		
+
 #endif	/* TESTSUITE_H */

Modified: trunk/uClibc/test/unistd/clone.c
===================================================================
--- trunk/uClibc/test/unistd/clone.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/unistd/clone.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -36,7 +33,7 @@
 	return input + 20;
 }
 
-int main(void) 
+int main(void)
 {
 	int clone1, clone2, clone3;
 	char clone1_stack[8192], clone2_stack[8192], clone3_stack[8192];

Modified: trunk/uClibc/test/unistd/fork.c
===================================================================
--- trunk/uClibc/test/unistd/fork.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/unistd/fork.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at uclibc.org>
  *
  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  */
@@ -26,7 +23,7 @@
 	fprintf(stderr, "I got a SIGCHLD\n");
 }
 
-int main(void) 
+int main(void)
 {
 	pid_t pid1, pid2, pid3;
 	int status, result, wpid;

Modified: trunk/uClibc/test/unistd/getcwd.c
===================================================================
--- trunk/uClibc/test/unistd/getcwd.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/unistd/getcwd.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -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 at uclibc.org>
- * Written by Erik Andersen <andersen at 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];

Modified: trunk/uClibc/test/unistd/vfork.c
===================================================================
--- trunk/uClibc/test/unistd/vfork.c	2006-07-05 18:31:40 UTC (rev 15635)
+++ trunk/uClibc/test/unistd/vfork.c	2006-07-05 18:38:37 UTC (rev 15636)
@@ -1,9 +1,7 @@
 /* vi: set sw=4 ts=4: */
 /*
  * vfork test for uClibc
- *
  * Copyright (C) 2000-2006 by Erik Andersen <andersen at uclibc.org>
- * Written by Erik Andersen <andersen at 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;




More information about the uClibc-cvs mailing list