put all the __warn_references behind a #ifndef NO_WARN_REFERENCES which
authorgraichen <graichen@openbsd.org>
Sun, 19 Jan 1997 22:32:14 +0000 (22:32 +0000)
committergraichen <graichen@openbsd.org>
Sun, 19 Jan 1997 22:32:14 +0000 (22:32 +0000)
is then set in the libc Makefile for the mips (the mips linker can't
handle them)

lib/libc/compat-43/setregid.c
lib/libc/compat-43/setreuid.c
lib/libc/compat-43/setrgid.c
lib/libc/compat-43/setruid.c
lib/libc/stdio/gets.c
lib/libc/stdio/mktemp.c
lib/libc/stdio/tempnam.c
lib/libc/stdio/tmpnam.c

index 49e910e..66ffe34 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: setregid.c,v 1.2 1996/08/19 08:19:31 tholo Exp $";
+static char *rcsid = "$OpenBSD: setregid.c,v 1.3 1997/01/19 22:32:14 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -40,7 +40,9 @@ static char *rcsid = "$OpenBSD: setregid.c,v 1.2 1996/08/19 08:19:31 tholo Exp $
 
 extern int __setregid __P((gid_t, gid_t));
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(setregid, "warning: this program uses setregid(), which is deprecated.");
+#endif
 
 int
 setregid(rgid, egid)
index 9e55aba..03785e9 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: setreuid.c,v 1.2 1996/08/19 08:19:33 tholo Exp $";
+static char *rcsid = "$OpenBSD: setreuid.c,v 1.3 1997/01/19 22:32:14 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -40,7 +40,9 @@ static char *rcsid = "$OpenBSD: setreuid.c,v 1.2 1996/08/19 08:19:33 tholo Exp $
 
 extern int __setreuid __P((uid_t, uid_t));
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(setreuid, "warning: this program uses setreuid(), which is deprecated.");
+#endif
 
 int
 setreuid(ruid, euid)
index b26f65a..57539b0 100644 (file)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: setrgid.c,v 1.4 1996/08/19 08:19:34 tholo Exp $";
+static char *rcsid = "$OpenBSD: setrgid.c,v 1.5 1997/01/19 22:32:15 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
 #include <unistd.h>
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(setrgid, "warning: this program uses setrgid(), which is deprecated.");
+#endif
 
 extern int __setregid __P((gid_t, gid_t));
 
index 6b35ad4..6294e7c 100644 (file)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: setruid.c,v 1.4 1996/08/19 08:19:36 tholo Exp $";
+static char *rcsid = "$OpenBSD: setruid.c,v 1.5 1997/01/19 22:32:15 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
 #include <unistd.h>
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(setruid, "warning: this program uses setruid(), which is deprecated.");
+#endif
 
 extern int __setreuid __P((uid_t, uid_t));
 
index 1cc13d4..6fccb05 100644 (file)
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: gets.c,v 1.3 1996/12/28 02:30:58 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: gets.c,v 1.4 1997/01/19 22:32:21 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <stdio.h>
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(gets,
     "warning: gets() is very unsafe; consider using fgets()");
+#endif
 
 char *
 gets(buf)
index bc69c6f..76dba5b 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: mktemp.c,v 1.3 1996/12/28 02:33:10 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: mktemp.c,v 1.4 1997/01/19 22:32:22 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -63,8 +63,10 @@ _mktemp(path)
        return(_gettemp(path, (int *)NULL) ? path : (char *)NULL);
 }
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(mktemp,
     "warning: mktemp() possibly used unsafely; consider using mkstemp()");
+#endif
 
 char *
 mktemp(path)
index 1b49112..7aa195e 100644 (file)
@@ -32,7 +32,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: tempnam.c,v 1.5 1996/12/28 02:33:14 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: tempnam.c,v 1.6 1997/01/19 22:32:22 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/param.h>
@@ -43,8 +43,10 @@ static char rcsid[] = "$OpenBSD: tempnam.c,v 1.5 1996/12/28 02:33:14 deraadt Exp
 #include <unistd.h>
 #include <paths.h>
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(tempnam,
     "warning: tempnam() possibly used unsafely; consider using mkstemp()");
+#endif
 
 extern char *_mktemp __P((char *));
 
index 15f68b0..620cdf2 100644 (file)
@@ -35,7 +35,7 @@
  */
 
 #if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: tmpnam.c,v 1.3 1996/12/28 02:33:15 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: tmpnam.c,v 1.4 1997/01/19 22:32:23 graichen Exp $";
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -43,8 +43,10 @@ static char rcsid[] = "$OpenBSD: tmpnam.c,v 1.3 1996/12/28 02:33:15 deraadt Exp
 #include <stdio.h>
 #include <unistd.h>
 
+#ifndef NO_WARN_REFERENCES
 __warn_references(tmpnam,
     "warning: tmpnam() possibly used unsafely; consider using mkstemp()");
+#endif
 
 extern char *_mktemp __P((char *));