Make a function static.

This commit is contained in:
riccardom 2008-12-29 13:06:42 +00:00
parent 1ffc0bc78a
commit d3f1925769
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ void md5_starts( struct md5_context *ctx )
ctx->state[3] = 0x10325476;
}
void md5_process( struct md5_context *ctx, uint8 data[64] )
static void md5_process( struct md5_context *ctx, uint8 data[64] )
{
uint32 A, B, C, D, X[16];