Remove: last remnants of SunOS (#11210)

We have no evidence SunOS has been tried in the last few years,
and the code is awkward enough to just remove.
This commit is contained in:
Patric Stout
2023-08-19 00:52:58 +02:00
committed by GitHub
parent 53af20910b
commit cd10ddf9ae
2 changed files with 2 additions and 52 deletions

View File

@@ -42,14 +42,8 @@
* does not have stdint.h.
* For OSX the inclusion is already done in osx_stdafx.h. */
#if !defined(__APPLE__) && (!defined(_MSC_VER) || _MSC_VER >= 1600)
# if defined(SUNOS)
/* SunOS/Solaris does not have stdint.h, but inttypes.h defines everything
* stdint.h defines and we need. */
# include <inttypes.h>
# else
# define __STDC_LIMIT_MACROS
# include <stdint.h>
# endif
# define __STDC_LIMIT_MACROS
# include <stdint.h>
#endif
#include <algorithm>