/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* Error routine exported interfaces: */

#ifndef ERROR_EXPORTS_H
#define	ERROR_EXPORTS_H

#ifndef PORT_H
#include "port.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

extern void	error(Str, ...);
extern void	error_abort(Str, ...);
extern int	error_count_get(PORT_NO_ARGS);
extern void	error_fatal(Str, ...);
extern void	error_warn(Str, ...);
extern int	error_warn_count_get(PORT_NO_ARGS);

#endif /* ERROR_EXPORTS_H */

