General Purpose library for Freestanding C++ and POSIX systems
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
|
- #include <gp/containers/array.hpp>
- #include "syscall.hpp"
-
- gp::buffer<char> hello = "Hello world\n";
-
- extern "C" {
- void _start() {
- write(1, hello);
- exit(0);
- }
- }
|