summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/includes.h
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>1999-09-29 12:59:14 +0000
committerNiels Provos <provos@cvs.openbsd.org>1999-09-29 12:59:14 +0000
commit77980b05c1b0d8f414084c1a914d22f711c284c0 (patch)
tree300419f3a2d8764fbd1b10dcad056c8f1359d1e8 /usr.bin/ssh/includes.h
parent4e3506fad0e451ec9e21f37744ee1cc9621b336c (diff)
evil #define vsnprintf be gone.
Diffstat (limited to 'usr.bin/ssh/includes.h')
-rw-r--r--usr.bin/ssh/includes.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/ssh/includes.h b/usr.bin/ssh/includes.h
index d0f32525e1f..67ee5551d75 100644
--- a/usr.bin/ssh/includes.h
+++ b/usr.bin/ssh/includes.h
@@ -13,7 +13,7 @@ This file includes most of the needed system headers.
*/
-/* RCSID("$Id: includes.h,v 1.1 1999/09/26 20:53:36 deraadt Exp $"); */
+/* RCSID("$Id: includes.h,v 1.2 1999/09/29 12:59:13 provos Exp $"); */
#ifndef INCLUDES_H
#define INCLUDES_H
@@ -213,10 +213,6 @@ struct sockaddr_un {
#include <sys/resource.h>
#endif
-#ifndef HAVE_VSNPRINTF
-#define vsnprintf(buf, len, fmt, args) vsprintf(buf, fmt, args)
-#endif
-
/* These POSIX macros are not defined in every system. */
#ifndef S_IRWXU