Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Howard <[email protected]>
  • Loading branch information
YzenaLLC committed Mar 5, 2022
1 parent de4fa1b commit ca6dd9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions include/lang.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#define BC_LANG_H

#include <stdbool.h>

#if BC_C11
#include <assert.h>
#endif // BC_C11
Expand Down
4 changes: 2 additions & 2 deletions include/status.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
#endif // BC_DEBUG_CODE

// We want to be able to use _Noreturn on C11 compilers.
#if __STDC_VERSION__ >= 201100L
#if __STDC_VERSION__ >= 201112L

#include <stdnoreturn.h>
#define BC_NORETURN _Noreturn
Expand Down Expand Up @@ -401,7 +401,7 @@ typedef enum BcErr {
/// Void value used in an expression error.
BC_ERR_EXEC_VOID_VAL,

// Parse (and lex errors).
// Parse (and lex) errors.

/// EOF encountered when not expected error.
BC_ERR_PARSE_EOF,
Expand Down

0 comments on commit ca6dd9e

Please sign in to comment.