mescc: Mes C Library: Prepare for M2-Planet: fdputc.

* lib/mes/fdputc.c (fdputc): Prepare for M2-Planet.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-07-25 19:55:21 +02:00 committed by Jan Nieuwenhuizen
parent 6e0ff69fc8
commit f33bc20bc7
No known key found for this signature in database
GPG Key ID: A781B6A92F5C71D6
1 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
int
fdputc (int c, int fd)
{
write (fd, (char *) &c, 1);
char *p = &c;
write (fd, p, 1);
return 0;
}