Skip to content

Commit

Permalink
Make sure that MS_STATIC isn't defined to 'static' under Win32.
Browse files Browse the repository at this point in the history
PR: 51
  • Loading branch information
levitte committed May 30, 2002
1 parent 8b57fb1 commit 6b7e0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e_os.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ extern "C" {
********************************************************************/
/* The following is used becaue of the small stack in some
* Microsoft operating systems */
#if defined(OPENSSL_SYS_MSDOS)
#if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYSNAME_WIN32)
# define MS_STATIC static
#else
# define MS_STATIC
Expand Down

0 comments on commit 6b7e0a9

Please sign in to comment.