diff options
| author | 2025-10-10 22:34:17 +0200 | |
|---|---|---|
| committer | 2025-10-10 22:34:17 +0200 | |
| commit | 0fb2b5712cc98ea993f37bd86eeed89fddc5d6d9 (patch) | |
| tree | de9fce7ad0212b54c3de3a72dbe67038e8dd7936 /test/bf.c | |
| parent | 0cb0dd0d23386a6a6ff4e981bb633b9e34a87c65 (diff) | |
bugfixes
Diffstat (limited to 'test/bf.c')
| -rw-r--r-- | test/bf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ void bf(const char *p) { extern int putchar(int); extern int getchar(void); - static unsigned char *const Mend = M + sizeof M; + unsigned char *Mend = M + sizeof M; int b; unsigned char *m = M; |