Skip to content

Commit

Permalink
Don't #include <endian.h> on macOS
Browse files Browse the repository at this point in the history
Resolves: #15
  • Loading branch information
solardiz committed Jul 18, 2021
1 parent 58cecd6 commit 4542bee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passwdqc_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extern int passwdqc_filter_close(passwdqc_filter_t *flt);
/* Lower-level inlines for shared use by pwqfilter.c and passwdqc_filter.c */

#include <string.h> /* for strcspn() */
#ifndef _MSC_VER
#if !defined(_MSC_VER) && !defined(__APPLE__)
#include <endian.h>
#endif

Expand Down

0 comments on commit 4542bee

Please sign in to comment.