Tweaked multiline ifdef style
Prefixing with operators greatly improves multiline expression readability, IMO.
This commit is contained in:
+5
-5
@@ -118,11 +118,11 @@
|
|||||||
#ifndef LFS3_NO_ASSERT
|
#ifndef LFS3_NO_ASSERT
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#endif
|
#endif
|
||||||
#if !defined(LFS3_NO_DEBUG) || \
|
#if !defined(LFS3_NO_DEBUG) \
|
||||||
!defined(LFS3_NO_INFO) || \
|
|| !defined(LFS3_NO_INFO) \
|
||||||
!defined(LFS3_NO_WARN) || \
|
|| !defined(LFS3_NO_WARN) \
|
||||||
!defined(LFS3_NO_ERROR) || \
|
|| !defined(LFS3_NO_ERROR) \
|
||||||
defined(LFS3_YES_TRACE)
|
|| defined(LFS3_YES_TRACE)
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user