summaryrefslogtreecommitdiff
path: root/crypto/md4
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/md4
parent8cbb91c857a042974154e7f8c8147efdf9b65ec8 (diff)
downloadopenssl-new-c76153f31d57e355f38d7937e707b4ec444049d8.tar.gz
Make sure not to declare a clashing read() for DJGPP.
PR: 440
Diffstat (limited to 'crypto/md4')
-rw-r--r--crypto/md4/md4.c2
1 files changed, 1 insertions, 1 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