aboutsummaryrefslogtreecommitdiff
path: root/ethosu/mlw_codec/mlw_decode.h
diff options
context:
space:
mode:
authorFredrik Svedberg <fredrik.svedberg@arm.com>2022-11-22 15:47:24 +0100
committerFredrik Svedberg <fredrik.svedberg@arm.com>2022-12-07 12:58:37 +0100
commitdb947e46755d8262710e734ccb2fb51ec725c844 (patch)
treee473c9379bd41a90083b6d68d915c401770e995c /ethosu/mlw_codec/mlw_decode.h
parent5451162090ec6540dbc2bf0b302340f3ca38a83f (diff)
downloadethos-u-vela-db947e46755d8262710e734ccb2fb51ec725c844.tar.gz
MLBEDSW-7002 Investigate output from code linter
Investigated all code linter output and fixed non-intentional reports. Change-Id: If49d6df8fe1a8a6ae4f1e28de4889a8c5763a0b3 Signed-off-by: Fredrik Svedberg <fredrik.svedberg@arm.com>
Diffstat (limited to 'ethosu/mlw_codec/mlw_decode.h')
-rw-r--r--ethosu/mlw_codec/mlw_decode.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ethosu/mlw_codec/mlw_decode.h b/ethosu/mlw_codec/mlw_decode.h
index df5dfab0..77df4e13 100644
--- a/ethosu/mlw_codec/mlw_decode.h
+++ b/ethosu/mlw_codec/mlw_decode.h
@@ -18,13 +18,13 @@
#include <stdint.h>
-#ifndef __MLW_DECODE_H__
-#define __MLW_DECODE_H__
+#ifndef MLW_DECODE_H
+#define MLW_DECODE_H
#ifdef _MSC_VER
- #define EXPORTED __declspec(dllexport)
+ #define MLW_DECODE_EXPORTED __declspec(dllexport)
#else
- #define EXPORTED __attribute__((visibility("default")))
+ #define MLW_DECODE_EXPORTED __attribute__((visibility("default")))
#endif
#if __cplusplus
@@ -32,7 +32,7 @@ extern "C"
{
#endif
-EXPORTED
+MLW_DECODE_EXPORTED
int mlw_decode(uint8_t *inbuf, int inbuf_size, int16_t **outbuf, int verbose);
#if __cplusplus