2023-08-11 11:37:23 +00:00
|
|
|
#if 0
|
|
|
|
/*─────────────────────────────────────────────────────────────────╗
|
|
|
|
│ To the extent possible under law, Justine Tunney has waived │
|
|
|
|
│ all copyright and related or neighboring rights to this file, │
|
|
|
|
│ as it is written in the following disclaimers: │
|
|
|
|
│ • http://unlicense.org/ │
|
|
|
|
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
|
|
|
╚─────────────────────────────────────────────────────────────────*/
|
2023-08-10 01:36:38 +00:00
|
|
|
#endif
|
2023-08-11 11:37:23 +00:00
|
|
|
#include "libc/calls/calls.h"
|
2023-08-10 01:36:38 +00:00
|
|
|
|
2023-08-11 11:37:23 +00:00
|
|
|
#ifndef TINY
|
|
|
|
__static_yoink("zipos"); // so apelink embeds symbol table
|
2023-08-10 01:36:38 +00:00
|
|
|
#endif
|
|
|
|
|
2023-08-11 11:37:23 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
write(2, "hello world\n", 12);
|
2023-05-09 09:35:05 +00:00
|
|
|
}
|