Blame scsilib/libschily/stdio/flush.c

Packit Service 3e823c
/* @(#)flush.c	1.7 04/08/08 Copyright 1986 J. Schilling */
Packit Service 3e823c
/*
Packit Service 3e823c
 *	Copyright (c) 1986 J. Schilling
Packit Service 3e823c
 */
Packit Service 3e823c
/*
Packit Service 3e823c
 * This program is free software; you can redistribute it and/or modify
Packit Service 3e823c
 * it under the terms of the GNU General Public License as published by
Packit Service 3e823c
 * the Free Software Foundation; either version 2, or (at your option)
Packit Service 3e823c
 * any later version.
Packit Service 3e823c
 *
Packit Service 3e823c
 * This program is distributed in the hope that it will be useful,
Packit Service 3e823c
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 3e823c
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 3e823c
 * GNU General Public License for more details.
Packit Service 3e823c
 *
Packit Service 3e823c
 * You should have received a copy of the GNU General Public License along with
Packit Service 3e823c
 * this program; see the file COPYING.  If not, write to the Free Software
Packit Service 3e823c
 * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Packit Service 3e823c
 */
Packit Service 3e823c
Packit Service 3e823c
#include "schilyio.h"
Packit Service 3e823c
Packit Service 3e823c
EXPORT int
Packit Service 3e823c
flush()
Packit Service 3e823c
{
Packit Service 3e823c
	return (fflush(stdout));
Packit Service 3e823c
}