Skip to content

Commit

Permalink
fix: options/ansi __SHRT_MAX_ typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
awewsomegamer committed Sep 2, 2024
1 parent bbe4b78 commit 58a5309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion options/ansi/include/limits.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

#define SHRT_MIN (-__SHRT_MAX__ - 1)
#define SHRT_MAX __SHRT_MAX__
#if __SHRT_MAX_ == __INT_MAX__
#if __SHRT_MAX__ == __INT_MAX__
# define USHRT_MAX (__SHRT_MAX__ * 2U + 1U)
#else
# define USHRT_MAX (__SHRT_MAX__ * 2 + 1)
Expand Down

0 comments on commit 58a5309

Please sign in to comment.