aboutsummaryrefslogtreecommitdiff
path: root/contrib/sendmail/libsm/fprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/sendmail/libsm/fprintf.c')
-rw-r--r--contrib/sendmail/libsm/fprintf.c55
1 files changed, 0 insertions, 55 deletions
diff --git a/contrib/sendmail/libsm/fprintf.c b/contrib/sendmail/libsm/fprintf.c
deleted file mode 100644
index 71938729c6d9..000000000000
--- a/contrib/sendmail/libsm/fprintf.c
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (c) 2000-2001 Sendmail, Inc. and its suppliers.
- * All rights reserved.
- * Copyright (c) 1990, 1993
- * The Regents of the University of California. All rights reserved.
- *
- * This code is derived from software contributed to Berkeley by
- * Chris Torek.
- *
- * By using this file, you agree to the terms and conditions set
- * forth in the LICENSE file which can be found at the top level of
- * the sendmail distribution.
- */
-
-#include <sm/gen.h>
-SM_RCSID("@(#)$Id: fprintf.c,v 1.17 2001/09/11 04:04:48 gshapiro Exp $")
-#include <sm/varargs.h>
-#include <sm/io.h>
-#include <sm/assert.h>
-#include "local.h"
-
-/*
-** SM_IO_FPRINTF -- format and print a string to a file pointer
-**
-** Parameters:
-** fp -- file pointer to be printed to
-** timeout -- time to complete print
-** fmt -- markup format for the string to be printed
-** ... -- additional information for 'fmt'
-**
-** Returns:
-** Failure: returns SM_IO_EOF and sets errno
-** Success: returns the number of characters o/p
-*/
-
-int
-#if SM_VA_STD
-sm_io_fprintf(SM_FILE_T *fp, int timeout, const char *fmt, ...)
-#else /* SM_VA_STD */
-sm_io_fprintf(fp, timeout, fmt, va_alist)
- SM_FILE_T *fp;
- int timeout;
- char *fmt;
- va_dcl
-#endif /* SM_VA_STD */
-{
- int ret;
- SM_VA_LOCAL_DECL
-
- SM_REQUIRE_ISA(fp, SmFileMagic);
- SM_VA_START(ap, fmt);
- ret = sm_io_vfprintf(fp, timeout, fmt, ap);
- SM_VA_END(ap);
- return ret;
-}