Skip to content

Commit

Permalink
Fix broken ifndef.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Aug 12, 2024
1 parent ce9686e commit 6351b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htmldoc/hdstring.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ extern int hd_strcasecmp(const char *, const char *);
# define strcasecmp hd_strcasecmp
# endif // !HAVE_STRCASECMP

# ifndef HAVE_STRNCASECMP
# ifndef HAVE_STRLCAT
extern size_t hd_strlcat(char *, const char *, size_t);
# define strlcat hd_strlcat
Expand All @@ -81,6 +80,7 @@ extern size_t hd_strlcpy(char *, const char *, size_t);
# define strlcpy hd_strlcpy
# endif // !HAVE_STRLCPY

# ifndef HAVE_STRNCASECMP
extern int hd_strncasecmp(const char *, const char *, size_t n);
# define strncasecmp hd_strncasecmp
# endif // !HAVE_STRNCASECMP
Expand Down

0 comments on commit 6351b55

Please sign in to comment.