diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-14 11:52:02 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2025-01-14 11:54:18 +0100 |
| commit | 99826c21b9da1c3a74fd8b3ebc08c7f8dbfadd30 (patch) | |
| tree | 6cfa8f7d18ed018917ea5609aeba1d870cd4e27a /dev/LibSCI/Macros.h | |
| parent | 39d565d61bb9f9926806bb87abb48f93d0b981f8 (diff) | |
T& Labs's ZKA, Multi-Processor Operating System.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/LibSCI/Macros.h')
| -rw-r--r-- | dev/LibSCI/Macros.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev/LibSCI/Macros.h b/dev/LibSCI/Macros.h index 284efb6e..2029b5d1 100644 --- a/dev/LibSCI/Macros.h +++ b/dev/LibSCI/Macros.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, t& Corporation, all rights reserved. +Copyright (C) 2024, t& Labs, all rights reserved. File: Macros.h Purpose: LibSCI Macros header. @@ -17,11 +17,17 @@ Purpose: LibSCI Macros header. #include <CompilerHint.h> #define ATTRIBUTE(X) __attribute__((X)) + #define IMPORT_CXX extern "C++" #define IMPORT_C extern "C" #define DEPRECATED ATTRIBUTE(deprecated) +#define EXIT_SUCCESS 0 +#define EXIT_FAILURE 1 + +#define FILE_MAX_LEN 256 + typedef bool Bool; typedef void Void; |
