aboutsummaryrefslogtreecommitdiff
path: root/sys/fmtio/fprintf.x
blob: dd5304d24f61fc9f975902cf01bccbfa6335cf5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	<printf.h>

# FPRINTF  -- Format output to a file.

procedure fprintf (fd, format_string)

int	fd
char	format_string[ARB]

begin
	call fprntf (fd, format_string, REGULAR_FILE)
end