Fix possible missing uchar.h.

This commit is contained in:
Milan Broz
2022-04-15 21:43:45 +02:00
parent 3fbc480e32
commit ab6762b849
2 changed files with 6 additions and 1 deletions

View File

@@ -25,7 +25,12 @@
#include <stdbool.h>
#include <stddef.h>
#include <string.h>
#ifdef HAVE_UCHAR_H
#include <uchar.h>
#else
#define char32_t uint32_t
#define char16_t uint16_t
#endif
struct crypt_hash;
struct crypt_hmac;