diff options
| author | Pavel Janík <[email protected]> | 2014-11-21 10:38:27 +0100 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2014-11-24 10:28:24 +0100 |
| commit | 494f6e7d353c63a85a2c6d4c6b2eb8e643934d60 (patch) | |
| tree | 8f29867d2c1e23d90aeab863051cbd7b40b18b5e /src/compat.h | |
| parent | Merge pull request #5356 (diff) | |
| download | discoin-494f6e7d353c63a85a2c6d4c6b2eb8e643934d60.tar.xz discoin-494f6e7d353c63a85a2c6d4c6b2eb8e643934d60.zip | |
Check for strnlen and provide it if it is not found.
Diffstat (limited to 'src/compat.h')
| -rw-r--r-- | src/compat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compat.h b/src/compat.h index dade79aae..80e53fe55 100644 --- a/src/compat.h +++ b/src/compat.h @@ -84,4 +84,8 @@ typedef u_int SOCKET; #define THREAD_PRIORITY_ABOVE_NORMAL (-2) #endif +#if HAVE_DECL_STRNLEN == 0 +size_t strnlen( const char *start, size_t max_len); +#endif // HAVE_DECL_STRNLEN + #endif // BITCOIN_COMPAT_H |