build: add the SIBO SDK
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/* HEADER - P_ASSERT.H
|
||||
Copyright (C) Psion PLC 1991-92
|
||||
VER DATE BY DESCRIPTION
|
||||
===== ======== === ===========
|
||||
1.00F 26/04/90 NSM First relase
|
||||
1.10F 07/07/92 NSM Second release
|
||||
1.11F 31/08/23 AB #ifndef fix
|
||||
*/
|
||||
#ifndef P_ASSERT_H
|
||||
#define P_ASSERT_H
|
||||
|
||||
#include <stdepoc.h>
|
||||
|
||||
#ifdef ASSERTIONS
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
extern void p_assert(char *pAssert,char *pFile,int lineNo);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#define __ASSERT(p) ((p) ? ((void)0) : p_assert(#p,__FILE__,__LINE__))
|
||||
#else
|
||||
#define __ASSERT(ignore) ((void)0)
|
||||
#endif
|
||||
|
||||
#endif // P_ASSERT_H
|
||||
Reference in New Issue
Block a user