OSDN Git Service

* mktemp.cc: Remove STABS specific link-time warning. Align copyright
authorcorinna <corinna>
Fri, 13 Mar 2009 20:49:42 +0000 (20:49 +0000)
committercorinna <corinna>
Fri, 13 Mar 2009 20:49:42 +0000 (20:49 +0000)
text to upstream.

winsup/cygwin/ChangeLog
winsup/cygwin/mktemp.cc

index 35ef486..97aede0 100644 (file)
@@ -1,5 +1,10 @@
 2009-03-13  Corinna Vinschen  <corinna@vinschen.de>
 
+       * mktemp.cc: Remove STABS specific link-time warning.  Align copyright
+       text to upstream.
+
+2009-03-13  Corinna Vinschen  <corinna@vinschen.de>
+
        * flock.cc: Fix lockf copyright to latest version.
 
 2009-03-12  Corinna Vinschen  <corinna@vinschen.de>
index 4b73753..c39fe49 100644 (file)
@@ -9,11 +9,6 @@ See the copyright at the bottom of this file. */
 #include <fcntl.h>
 #include <unistd.h>
 
-#define link_warning(symbol, msg) \
-  asm (".stabs \"" msg "\",30,0,0,0\n\t" \
-  ".stabs \"_" #symbol "\",1,0,0,0\n");
-
-
 static int _gettemp(char *, int *, int);
 static uint32_t arc4random ();
 
@@ -33,9 +28,6 @@ mkdtemp(char *path)
   return _gettemp(path, NULL, 1) ? path : NULL;
 }
 
-link_warning (mktemp, "the use of `mktemp' is dangerous, better use `mkstemp'")
-link_warning (_imp__mktemp, "the use of `mktemp' is dangerous, better use `mkstemp'")
-
 extern "C" char *
 mktemp(char *path)
 {
@@ -158,10 +150,6 @@ arc4random ()
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
-* 3. All advertising materials mentioning features or use of this software
-*    must display the following acknowledgement:
-*      This product includes software developed by the University of
-*      California, Berkeley and its contributors.
 * 4. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.