mirror of
https://github.com/encounter/osdev.git
synced 2026-03-30 11:33:54 -07:00
6 lines
123 B
C
6 lines
123 B
C
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
int _start(int argc, char **argv) {
|
|
return 5; // ((uintptr_t) strlen) + 256;
|
|
} |