Skip to content

Commit

Permalink
Merge pull request #2115 from jwillemsen/jwi-reorderdefines
Browse files Browse the repository at this point in the history
Reorder defines
  • Loading branch information
jwillemsen authored Sep 5, 2023
2 parents 7afc280 + d636e1c commit 86a1759
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ACE/ace/OS_NS_sys_stat.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL

# if defined (_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64 && defined (ACE_WIN32)
# if defined (__BORLANDC__)
typedef struct stati64 ACE_stat;
# define ACE_STAT_FUNC_NAME ::_stati64
# define ACE_WSTAT_FUNC_NAME ::_wstati64
# elif defined (_MSC_VER)
# if defined (_MSC_VER)
typedef struct _stat64 ACE_stat;
# define ACE_STAT_FUNC_NAME ::_stat64
# define ACE_WSTAT_FUNC_NAME ::_wstat64
# elif defined (__MINGW32__)
typedef struct _stati64 ACE_stat;
# define ACE_STAT_FUNC_NAME ::_stati64
# define ACE_WSTAT_FUNC_NAME ::_wstati64
# elif defined (__BORLANDC__)
typedef struct stati64 ACE_stat;
# define ACE_STAT_FUNC_NAME ::_stati64
# define ACE_WSTAT_FUNC_NAME ::_wstati64
# else
typedef struct stat ACE_stat;
# define ACE_STAT_FUNC_NAME ::stat
Expand Down

0 comments on commit 86a1759

Please sign in to comment.