Skip to content

Commit

Permalink
Make sure not to declare a clashing read() for DJGPP.
Browse files Browse the repository at this point in the history
PR: 440
  • Loading branch information
levitte committed Jan 13, 2003
1 parent 8cbb91c commit c76153f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion crypto/md4/md4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crypto/md5/md5.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crypto/ripemd/rmd160.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c76153f

Please sign in to comment.