[uClibc-cvs] uClibc/libresolv resolv.c,1.4,1.5

Erik Andersen andersen at codepoet.org
Thu Dec 12 01:56:51 UTC 2002


Update of /var/cvs/uClibc/libresolv
In directory winder:/tmp/cvs-serv31832

Modified Files:
	resolv.c 
Log Message:
Avoid silly namespace pollution


Index: resolv.c
===================================================================
RCS file: /var/cvs/uClibc/libresolv/resolv.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- resolv.c	20 Aug 2002 22:49:57 -0000	1.4
+++ resolv.c	12 Dec 2002 01:56:48 -0000	1.5
@@ -2,9 +2,7 @@
 /*
  * libresolv 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>
+ * Copyright (C) 2002 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
@@ -24,9 +22,9 @@
 
 #include <features.h>
 
-void stub(void)
+void __stub1(void)
 {
 	return;
 }
-link_warning (stub, "the `libresolv' library is a stub.  Do you really need it?")
+link_warning (__stub1, "the `libresolv' library is a stub.  Do you really need it?")
 




More information about the uClibc-cvs mailing list