xref: /inferno-os/appl/cmd/pause.b (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1implement Pause;
2#
3# init program to do nothing but pause
4#
5
6include "sys.m";
7include "draw.m";
8
9Pause: module
10{
11	init:	fn(nil: ref Draw->Context, nil: list of string);
12};
13
14init(nil: ref Draw->Context, nil: list of string)
15{
16	<-chan of int;
17}
18