Fixes for Alpha.

Submitted by:	mjacob
This commit is contained in:
Garrett Wollman 1999-02-26 20:06:46 +00:00
parent 2c2bc092fa
commit 617f28f744
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=44304
2 changed files with 4 additions and 3 deletions

View File

@ -55,12 +55,13 @@
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*
* $Id$
* $Id: rmd160c.c,v 1.1 1999/02/26 18:41:45 wollman Exp $
*/
#include <sys/types.h>
#include <stdio.h>
#inlcude <string.h>
#if 0
#include <machine/ansi.h> /* we use the __ variants of bit-sized types */

View File

@ -55,7 +55,7 @@
* copied and put under another distribution licence
* [including the GNU Public Licence.]
*
* $Id$
* $Id: sha0c.c,v 1.1 1999/02/26 04:24:56 wollman Exp $
*/
#include <sys/types.h>
@ -117,7 +117,7 @@ SHA_CTX *c;
void SHA_Update(c, data, len)
SHA_CTX *c;
const unsigned char *data;
u_int32_t len;
size_t len;
{
register u_int32_t *p;
int ew,ec,sw,sc;