File: linux-outbyte.c

package info (click to toggle)
newlib 4.6.0.20260123-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 69,060 kB
  • sloc: ansic: 510,811; asm: 53,339; makefile: 52,993; sh: 12,369; perl: 2,902; cpp: 1,280; python: 999; lisp: 720; exp: 359; pascal: 47; xml: 40
file content (6 lines) | stat: -rw-r--r-- 93 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
extern int _write (int, char *, int);

void outbyte (unsigned char c)
{
	_write(1, &c, 1);
}