blob: 1fca78eafaba80f6a9e7584269761d7c4e4e33be [file] [log] [blame]
Gabor Ambrusa9f8d172023-08-14 22:32:08 +02001/* SPDX-License-Identifier: BSD-3-Clause */
2/*
3 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
4 */
5
6#ifndef LOG_STATUS_H
7#define LOG_STATUS_H
8
9#include <stdint.h>
10
11typedef int32_t log_status_t;
12
13#define LOG_STATUS_SUCCESS ((log_status_t)0)
14#define LOG_STATUS_GENERIC_ERROR ((log_status_t)-1)
15#define LOG_STATUS_INVALID_PARAMETER ((log_status_t)-2)
16
17#endif /* LOG_STATUS_H */