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

/*
 * Copyright (c) 1990, 1991, 1993, 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.
 */

/* Wrapper for stdio.h: */

#ifndef UNIX_STDIO_H
#define UNIX_STDIO_H

#include <stdio.h>

#ifndef UNIX_MALLOC_H
#include "unix_malloc.h"
#endif

typedef FILE *Stdio;

#ifdef SOLARIS_1
extern int	getw(Stdio);
extern int	_filbuf(struct _iobuf *);
extern int	_flsbuf(int, struct _iobuf *);
extern int	putw(int, Stdio);
#endif /* SOLARIS_1 */

#endif /* UNIX_STDIO_H */
