diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-08-23 14:05:26 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-08-23 14:05:26 +0200 |
| commit | bf41d022ce9736a92097f416ab96fca7ab4594ca (patch) | |
| tree | 74813da62ec329f826828d2cac8701a94277dc41 /source | |
| parent | e4fece8e791cddec1c765c9834e1c13d0f258e16 (diff) | |
| download | elna-bf41d022ce9736a92097f416ab96fca7ab4594ca.tar.gz | |
Reject 0-sized variables
Diffstat (limited to 'source')
| -rw-r--r-- | source/cstdio.elna | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cstdio.elna b/source/cstdio.elna index cd218fe..78c3a24 100644 --- a/source/cstdio.elna +++ b/source/cstdio.elna @@ -3,7 +3,7 @@ obtain one at https://mozilla.org/MPL/2.0/. *) type - FILE* = record end + FILE* = extern var stdin*: ^FILE := extern |
