22 lines
787 B
C++
22 lines
787 B
C++
/* src/service/hello/hello.cxx
|
|
* A temporary dummy service.
|
|
*
|
|
* Copyright 2026 Benji Dial
|
|
* This file is part of the Calcite Operating System.
|
|
*
|
|
* Calcite is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, version 3 only.
|
|
*
|
|
* Calcite is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* Calcite. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
extern "C" [[noreturn]] void __entry() {
|
|
while (true)
|
|
;
|
|
}
|