diff --git a/library.json b/library.json index 48f7c75..8b825fd 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "ebs-platform", - "version": "0.2.0", + "version": "0.2.1", "description": "Common EBS Platform Interfaces", "keywords": "ebs", "repository": { diff --git a/src/platform/debug.c b/src/platform/debug.c new file mode 100644 index 0000000..f3fdc07 --- /dev/null +++ b/src/platform/debug.c @@ -0,0 +1,7 @@ + + +#include "debug.h" + +void die(void) { + while(1); +} diff --git a/src/platform/debug.h b/src/platform/debug.h new file mode 100644 index 0000000..c6d839d --- /dev/null +++ b/src/platform/debug.h @@ -0,0 +1,3 @@ + + +void die(void); \ No newline at end of file