mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 17:43:59 +02:00

due to a bug of its cl.exe. [Bug #3231] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10 lines
143 B
C
10 lines
143 B
C
/* $Id$ */
|
|
|
|
#include "../defs.h"
|
|
#include "sha1ossl.h"
|
|
|
|
void
|
|
SHA1_Finish(SHA1_CTX *ctx, char *buf)
|
|
{
|
|
SHA1_Final((unsigned char *)buf, ctx);
|
|
}
|