1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-09-29 17:45:55 -04:00

Minor whitespace cleanup in #define statements

This commit is contained in:
John Zaitseff 2018-08-04 22:14:03 +10:00
parent 192b749018
commit 1c3afc571b

View File

@ -46,10 +46,10 @@
#if ! defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 700
# undef _XOPEN_SOURCE
# if defined(__sun) && defined(__SVR4)
# define _XOPEN_SOURCE 600 // Use SUSv3 on SunOS 5.x
# define __EXTENSIONS__ 1 // ... with Solaris extensions
# define _XOPEN_SOURCE 600 // Use SUSv3 on SunOS 5.x
# define __EXTENSIONS__ 1 // ... with Solaris extensions
# else
# define _XOPEN_SOURCE 700 // Use SUSv4 everywhere else
# define _XOPEN_SOURCE 700 // Use SUSv4 everywhere else
# endif
#endif