build: add the SIBO SDK

This commit is contained in:
2026-07-06 18:01:36 +01:00
parent d76326729c
commit 64e484448c
757 changed files with 97167 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/* Release 3.00 */
/*-------------------------------------------------------------------------*
* *
* assert.h - assert macro. *
* *
* COPYRIGHT (C) 1989 Jensen and Partners. All Rights Reserved *
* *
*--------------------------------------------------------------------------*/
#include <stdepoc.h>
#ifdef NDEBUG
#define assert(ignore) ((void) 0)
#else
#include <stdio.h>
#ifdef __cplusplus
extern "C" {
#endif
extern void abort(void);
#ifdef __cplusplus
}
#endif
#define assert(p) ((p) ? ((void) 0) : (( (void) fprintf(stderr,\
"Assertion failed: %s, file %s, line %d\n",\
#p, __FILE__, __LINE__)), (abort())))
#endif