upstream rev 1.25: add sys/types.h

This commit is contained in:
Darren Tucker 2019-06-08 09:02:24 +10:00
parent 10974f986f
commit 55f3153393
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $OpenBSD: sha1.c,v 1.24 2015/01/15 13:05:59 millert Exp $ */
/* $OpenBSD: sha1.c,v 1.25 2015/01/16 16:48:51 deraadt Exp $ */
/*
* SHA-1 in C
@ -18,7 +18,7 @@
#ifndef WITH_OPENSSL
#include <sys/param.h>
#include <sys/types.h>
#include <string.h>
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))