aboutsummaryrefslogtreecommitdiff
path: root/unix/boot/spp/rpp/ratlibr/putc.r
blob: 3ba16c13176271c9743ce44cad24c61ffd697f2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
include	defs

# putc - put character onto STDOUT

   subroutine putc (c)
   character c

   call putch (c, STDOUT)

   return
   end