From 6018e17637264a9561b37be699c3d53b6661de23 Mon Sep 17 00:00:00 2001 From: Kacper Fiedorowicz Date: Sat, 3 Jan 2026 18:44:51 +0100 Subject: Add docs and nohup/unlink utitilies --- include/assert.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include/assert.h') diff --git a/include/assert.h b/include/assert.h index 49550e39..04ec025b 100644 --- a/include/assert.h +++ b/include/assert.h @@ -1,14 +1,11 @@ -#ifndef __ASSERT_H -#define __ASSERT_H +#pragma once #ifdef NDEBUG #define assert(ignore) ((void)0) #else #define assert(__expr) ((__expr) ? (void)0 : __assert(__FILE__, __LINE__, __PRETTY_FUNCTION__, #__expr)) -#endif _Noreturn void __assert(const char *_Nonnull __file, int __line, const char *_Nonnull __func, const char *_Nonnull __expr); - #endif -- cgit v1.2.3