Tweaked multiline ifdef style

Prefixing with operators greatly improves multiline expression
readability, IMO.
This commit is contained in:
Christopher Haster
2025-12-06 13:53:40 -06:00
parent 360170f0f4
commit e9bd704c89
+5 -5
View File
@@ -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