diff options
| author | Baitinq <[email protected]> | 2025-05-20 23:19:46 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-05-20 23:19:46 +0200 |
| commit | b736233822765222c3963d03749b8f6200000dd3 (patch) | |
| tree | 868202dd7161897cbc2b0f745791b57d3608e140 /src/bootstrap/main.src | |
| parent | Feature: Add support for casting types (diff) | |
| download | interpreter-b736233822765222c3963d03749b8f6200000dd3.tar.gz interpreter-b736233822765222c3963d03749b8f6200000dd3.tar.bz2 interpreter-b736233822765222c3963d03749b8f6200000dd3.zip | |
Feature: Add more type checks
Diffstat (limited to 'src/bootstrap/main.src')
| -rw-r--r-- | src/bootstrap/main.src | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/bootstrap/main.src b/src/bootstrap/main.src index aa916d9..7917e04 100644 --- a/src/bootstrap/main.src +++ b/src/bootstrap/main.src @@ -1,13 +1,3 @@ -extern fopen = (*i8, *i8) => *i8; -extern fgets = (*i8, i64, *i8) => void; -extern feof = (*i8) => bool; -extern fseek = (*i8, i64, i64) => i64; -extern ftell = (*i8) => i64; -extern fread = (*i8, i64, i64, *i8) => i64; -extern fclose = (*i8) => *i8; -extern malloc = (i64) => *i8; -extern free = (*i8) => void; - import "!stdlib.src"; import "tokenizer.src"; |