/*
* 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.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <string.h>
#include <errno.h>
#include <sm/errstring.h>
#include "local.h"
#include "fvwrite.h"
/*
** SM_IO_PUTC -- output a character to the file
**
**
** Parameters:
** fp -- file to output to
** timeout -- time to complete putc
** c -- int value of character to output
**
** Returns:
** Failure: returns SM_IO_EOF _and_ sets errno
** Success: returns sm_putc() value.
**
*/
int
int timeout;
int c;
{
{
return SM_IO_EOF;
}
}
/*
** SM_PERROR -- print system error messages to smioerr
**
** Parameters:
** s -- message to print
**
** Returns:
** none
*/
void
sm_perror(s)
const char *s;
{
if (s != NULL && *s != '\0')
}