1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

fix #35538 (new "hash" extensions does not compile on amd64)

This commit is contained in:
Antony Dovgal
2005-12-03 23:31:14 +00:00
parent 7cf9dfe237
commit bb6aa3ebd3

View File

@@ -32,7 +32,7 @@ typedef struct {
} PHP_GOST_CTX;
PHP_HASH_API void PHP_GOSTInit(PHP_GOST_CTX *);
PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *, const unsigned char *, uint);
PHP_HASH_API void PHP_GOSTUpdate(PHP_GOST_CTX *, const unsigned char *, size_t);
PHP_HASH_API void PHP_GOSTFinal(unsigned char[64], PHP_GOST_CTX *);
#endif