[BACK]Return to putchar.c CVS log [TXT][DIR] Up to [local] / sys / arch / mvme68k / stand / libbug

File: [local] / sys / arch / mvme68k / stand / libbug / putchar.c (download)

Revision 1.1, Tue Mar 4 16:07:38 2008 UTC (16 years, 3 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: putchar.c,v 1.1 1996/05/16 02:25:39 chuck Exp $ */

/*
 * putchar: easier to do this with outstr than to add more macros to
 * handle byte passing on the stack
 */

#include <sys/types.h>
#include <machine/prom.h>

#include "stand.h"
#include "libbug.h"

void
putchar(c)

int c;

{
  char ca[2];
  if (c == '\n')
    putchar('\r');
  ca[0] = c;
  mvmeprom_outstr(&ca[0], &ca[1]);
}