1
0
mirror of https://git.FreeBSD.org/src.git synced 2026-06-02 11:24:32 +00:00

assert.h: Revert "Remove leading tabs for whitespace consistency"

This reverts commit 157c184689.

As per style(9), a tab goes after #define.  This should not have been
removed.

Reported by:	kib
Fixes:		157c184689.
Pull Request:	https://github.com/freebsd/freebsd-src/pull/2203
This commit is contained in:
Robert Clausecker
2026-05-31 21:47:36 +02:00
parent 963a92d63b
commit 439710cf00
+2 -2
View File
@@ -46,8 +46,8 @@
#undef __assert_unreachable
#ifdef NDEBUG
#define assert(...) ((void)0)
#define _assert(...) ((void)0)
#define assert(e) ((void)0)
#define _assert(e) ((void)0)
#if __BSD_VISIBLE
#define __assert_unreachable() __unreachable()
#endif /* __BSD_VISIBLE */