Skip to content

Commit

Permalink
Fix patchlevel check for util.h
Browse files Browse the repository at this point in the history
Fixes #27
  • Loading branch information
toddr committed Dec 28, 2023
1 parent 9006949 commit 15b122c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tty.xs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ typedef FILE * InOutStream;
#ifdef HAVE_UTIL_H
# ifdef UTIL_H_ABS_PATH
# include UTIL_H_ABS_PATH
# elif ((PATCHLEVEL < 19) && (SUBVERSION < 4))
# elif ((PATCHLEVEL < 19) || ((PATCHLEVEL == 19) && (SUBVERSION < 4)))
# include <util.h>
# endif
#endif /* HAVE_UTIL_H */
Expand Down

0 comments on commit 15b122c

Please sign in to comment.