Hash :
d5c155fc
Author :
Date :
2019-01-01T15:57:36
add stdint.h shim, include limits for SIZE_MAX on Android
/*
* Public domain
* stdint.h compatibility shim
*/
#ifdef _MSC_VER
#include <../include/stdint.h>
#else
#include_next <stdint.h>
#endif
#ifndef LIBCRYPTOCOMPAT_STDINT_H
#define LIBCRYPTOCOMPAT_STDINT_H
#ifndef SIZE_MAX
#include <limits.h>
#endif
#endif