--- nono/debugger/console_stdio.cpp 2026/04/29 17:04:30 1.1 +++ nono/debugger/console_stdio.cpp 2026/04/29 17:04:33 1.1.1.2 @@ -1,6 +1,7 @@ // // nono -// Copyright (C) 2020 isaki@NetBSD.org +// Copyright (C) 2020 nono project +// Licensed under nono-license.txt // #include "header.h" @@ -28,13 +29,6 @@ ConsoleStdio::~ConsoleStdio() bool ConsoleStdio::Init() { - return true; -} - -// オープン -bool -ConsoleStdio::Open() -{ // stdin,out 相当なので開きっぱなしにする if (inp.fd == -1) { inp.fd = STDIN_FILENO; @@ -44,6 +38,14 @@ ConsoleStdio::Open() return true; } +// 受け付ける +bool +ConsoleStdio::Accept() +{ + // 何もしなくていい + return true; +} + void ConsoleStdio::Close() {