From c76153f31d57e355f38d7937e707b4ec444049d8 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 13 Jan 2003 15:35:22 +0000 Subject: [PATCH] Make sure not to declare a clashing read() for DJGPP. PR: 440 --- crypto/md4/md4.c | 2 +- crypto/md5/md5.c | 2 +- crypto/ripemd/rmd160.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crypto/md4/md4.c b/crypto/md4/md4.c index 2ac2d914ff..141415ad4d 100644 --- a/crypto/md4/md4.c +++ b/crypto/md4/md4.c @@ -64,7 +64,7 @@ void do_fp(FILE *f); void pt(unsigned char *md); -#ifndef _OSD_POSIX +#if !defined(_OSD_POSIX) && !defined(__DJGPP__) int read(int, void *, unsigned int); #endif diff --git a/crypto/md5/md5.c b/crypto/md5/md5.c index 7ed0024ae1..563733abc5 100644 --- a/crypto/md5/md5.c +++ b/crypto/md5/md5.c @@ -64,7 +64,7 @@ void do_fp(FILE *f); void pt(unsigned char *md); -#ifndef _OSD_POSIX +#if !defined(_OSD_POSIX) && !defined(__DJGPP__) int read(int, void *, unsigned int); #endif diff --git a/crypto/ripemd/rmd160.c b/crypto/ripemd/rmd160.c index 4f8b88a18a..b0ec574498 100644 --- a/crypto/ripemd/rmd160.c +++ b/crypto/ripemd/rmd160.c @@ -64,7 +64,7 @@ void do_fp(FILE *f); void pt(unsigned char *md); -#ifndef _OSD_POSIX +#if !defined(_OSD_POSIX) && !defined(__DJGPP__) int read(int, void *, unsigned int); #endif -- GitLab