diff target-utils/libprintf/sprintf_putchar.c @ 11:40f607bb0a2c

target-utils refactored
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 01 May 2013 07:39:35 +0000
parents loadagent/libprintf/sprintf_putchar.c@45bf8af5f061
children 84611183c8c3
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/target-utils/libprintf/sprintf_putchar.c	Wed May 01 07:39:35 2013 +0000
@@ -0,0 +1,8 @@
+void
+_sprintf_putchar(ch, pp)
+	int ch;
+	char **pp;
+{
+	**pp = ch;
+	(*pp)++;
+}