aboutsummaryrefslogtreecommitdiff
path: root/openamp/src/libmetal/errno.h
diff options
context:
space:
mode:
authorLedion Daja <ledion.daja@arm.com>2023-11-06 17:35:06 +0100
committerLedion Daja <ledion.daja@arm.com>2023-11-08 14:33:37 +0100
commitd9afc0ab30060517f5a18efc7c70f412d0d99340 (patch)
tree3991116d06938e7a0eabe35f8607bbd3c9814f75 /openamp/src/libmetal/errno.h
parentba17178d8d29e5f5088edb3878962cc2ca0de12a (diff)
downloadethos-u-core-software-d9afc0ab30060517f5a18efc7c70f412d0d99340.tar.gz
Remove workaround for libmetal support with ARMCC v6 compiler23.11-rc223.11-rc123.11
A workaround had been added previously to support building of libmetal library with ARMCC v6. Since such support has recently been added upstream in the libmetal repository, the workaround can now be removed. Change-Id: Idb5e6ba3112e329a0c2193d35c80c3cb45f90486 Signed-off-by: Ledion Daja <ledion.daja@arm.com>
Diffstat (limited to 'openamp/src/libmetal/errno.h')
-rw-r--r--openamp/src/libmetal/errno.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/openamp/src/libmetal/errno.h b/openamp/src/libmetal/errno.h
deleted file mode 100644
index c933a0c..0000000
--- a/openamp/src/libmetal/errno.h
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (c) 2020 STMicroelectronnics. All rights reserved.
- * SPDX-FileCopyrightText: Copyright 2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-/*
- * @file metal/errno.h
- * @brief error specific primitives for libmetal.
- */
-
-#ifndef __METAL_ERRNO__H__
-#define __METAL_ERRNO__H__
-
-#if defined(__ICCARM__)
-# include <metal/compiler/iar/errno.h>
-#elif defined(__CC_ARM) || defined (__ARMCC_VERSION)
-# include <metal/compiler/armcc/errno.h>
-#else
-# include <errno.h>
-#endif
-
-#endif /* __METAL_ERRNO__H__ */