diff options
| author | Luca D'Amico <damico.luca91@live.it> | 2024-02-07 23:15:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-07 23:15:30 +0100 |
| commit | 646ed3cb321633a430ae9cbc6428177d132378f5 (patch) | |
| tree | aee9c8c12e0bc5c5d1f49effcee9be57b2afda92 /src/sha1 | |
| parent | 5ffa6429804a5668edf198a26a1595c170149798 (diff) | |
Add Haiku (BeOS-like OS) support (#1858)
Diffstat (limited to 'src/sha1')
| -rw-r--r-- | src/sha1/sha1.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sha1/sha1.c b/src/sha1/sha1.c index c0052b7..c34ace3 100644 --- a/src/sha1/sha1.c +++ b/src/sha1/sha1.c @@ -27,6 +27,9 @@ A million repetitions of "a" #if defined(__sun) #include "solarisfixes.h" #endif +#if defined(__HAIKU__) +#include <ByteOrder.h> +#endif #include "sha1.h" #ifndef BYTE_ORDER |