Work around ORCA/C bug.

This commit is contained in:
Stephen Heumann 2017-07-05 11:44:22 -05:00
parent 5b7c832600
commit 4c0265d921
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
#include <time.h>
#include "md5.h"
unsigned char buf[0x8000];
unsigned char buf[0x8000ul];
int main(int argc, char **argv) {
struct md5_context ctx;

View File

@ -19,7 +19,7 @@
#include <time.h>
#include "sha1.h"
unsigned char buf[0x8000];
unsigned char buf[0x8000ul];
int main(int argc, char **argv) {
struct sha1_context ctx;

View File

@ -19,7 +19,7 @@
#include <time.h>
#include "sha256.h"
unsigned char buf[0x8000];
unsigned char buf[0x8000ul];
int main(int argc, char **argv) {
struct sha256_context ctx;