summaryrefslogtreecommitdiffstats
path: root/crypto/ripemd
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-01-13 15:35:27 +0000
committerRichard Levitte <levitte@openssl.org>2003-01-13 15:35:27 +0000
commit98753dd088867cc2efbbe33bb5ec482bfff597ee (patch)
treeb6089b1250adb547fb173a14691aa362da673d55 /crypto/ripemd
parent881cb8b1087e6df152657a0e2bf53a11c208c8f1 (diff)
Make sure not to declare a clashing read() for DJGPP.
PR: 440
Diffstat (limited to 'crypto/ripemd')
-rw-r--r--crypto/ripemd/rmd160.c2
1 files changed, 1 insertions, 1 deletions
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