Vhex-kernel/src/kernel/devices/tty/close.c

8 lines
94 B
C
Raw Normal View History

#include <kernel/devices/tty.h>
int tty_close(void)
{
// Do nothing for now.
return (0);
}