enarx 0.1.0

Enarx Keep Loader
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0

#include "libc.h"

int main(void) {
    const char msg[] = "hi\n";
    const int len = sizeof(msg) - 1;
    return write(STDOUT_FILENO, msg, len) != len;
}