Skip to content

Commit

Permalink
Update 2024-03-21-setjmp-plus-longjmp-equals-goto-but-awesome.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MyNameIsTrez authored Dec 26, 2024
1 parent 44eb775 commit 05745cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int main() {

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`.

`grug.c` is over 9k lines long and has over 400 spots where it checks for errors, so this is one of the rare cases where I've decided to create C macros:
`grug.c` is over 9k lines long and has over 400 spots where it checks for errors, so this is one of the rare cases where I've decided to use macros:

```bettercpp
#define grug_error(...) {\
Expand Down

0 comments on commit 05745cc

Please sign in to comment.