From 0d746579b5a08d890f03deb848e8ee851a812338 Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 26 Aug 2021 13:28:22 +0100 Subject: [PATCH] Re-enabled terminal output hack --- photon/libc/sys/horizon/fio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/photon/libc/sys/horizon/fio.c b/photon/libc/sys/horizon/fio.c index b9880f3..cfc3d55 100644 --- a/photon/libc/sys/horizon/fio.c +++ b/photon/libc/sys/horizon/fio.c @@ -1,3 +1,4 @@ +#include #include #include "sys/types.h" #include "__fio.h" @@ -59,7 +60,7 @@ unsigned int __fio_read(struct __io_file *f, char *buf, unsigned int sz) unsigned int __fio_write(struct __io_file *f, const char *buf, unsigned int sz) { - //mx_console_write(buf, sz); + mx_console_write(buf, sz); return sz; }