/*******************************************************************
 File:     printf.h
 Purpose:  simple printf
 Author:   Justin Fletcher
 Date:     04 Oct 1997
 ******************************************************************/

#ifndef __PRINTF_H
#define __PRINTF_H

/*********************************************** <c> Gerph *********
 Function:     printf
 Description:  Simple printf routine
 Parameters:   as printf
 Returns:      none
 ******************************************************************/
void printf(char *,...);

#endif
