1988-10-12 15:49:11 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1988-10-12 15:49:11 +00:00
|
|
|
|
|
|
|
/* A C K P R I N T M O D U L E D E F I N T I O N S */
|
|
|
|
|
|
|
|
#ifdef lint
|
|
|
|
|
|
|
|
#include <system.h>
|
|
|
|
|
|
|
|
/* LINTLIBRARY */
|
|
|
|
|
|
|
|
/* FORMAT0 $
|
|
|
|
%[bdox] = int %l[bdox] = long
|
|
|
|
%c = int %s = char *
|
|
|
|
%u = unsigned int
|
|
|
|
$ */
|
|
|
|
print(format) char *format; { ; }
|
|
|
|
|
|
|
|
/* FORMAT1 */
|
|
|
|
fprint(filep, format) File *filep; char *format; { ; }
|
|
|
|
/* FORMAT1 */
|
|
|
|
sprint(s, format) char *s; char *format; { ; }
|
|
|
|
/* FORMAT1 */
|
|
|
|
doprnt(filep, format) File *filep; char *format; { ; }
|
|
|
|
|
1991-12-17 14:27:24 +00:00
|
|
|
#endif /* lint */
|
1988-10-12 15:49:11 +00:00
|
|
|
|