Skip to content

Commit 5931e0e

Browse files
authored
Update 2024-03-21-setjmp-plus-longjmp-equals-goto-but-awesome.md
1 parent 6fd0c99 commit 5931e0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/2024-03-21-setjmp-plus-longjmp-equals-goto-but-awesome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ int main() {
137137

138138
Compiling and running this program with `gcc foo.c && ./a.out` [on godbolt.org](https://godbolt.org/z/3P9j59d15) prints `foo` to stdout, then prints `The value of 42 was bigger than expected!` to stderr, and then exits with `EXIT_FAILURE`.
139139

140-
Although I dislike C's macros, `grug.c` is over 9k lines long and has over 400 spots where it needs to do throw if an error fails, so this is roughly what it uses:
140+
Although I dislike C's macros, `grug.c` is over 9k lines long and has over 400 spots where it checks for errors, so this is roughly what it uses:
141141

142142
```bettercpp
143143
#define grug_error(...) {\

0 commit comments

Comments
 (0)