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