1*758ccb80SChris Kay /* 2*758ccb80SChris Kay * Copyright (c) 2024, Arm Limited. All rights reserved. 3*758ccb80SChris Kay * 4*758ccb80SChris Kay * SPDX-License-Identifier: BSD-3-Clause 5*758ccb80SChris Kay */ 6*758ccb80SChris Kay 7*758ccb80SChris Kay #ifndef BUILD_MESSAGE_H 8*758ccb80SChris Kay #define BUILD_MESSAGE_H 9*758ccb80SChris Kay 10*758ccb80SChris Kay static const char build_message[] = "Built : " BUILD_MESSAGE_TIMESTAMP; 11*758ccb80SChris Kay static const char build_version_string[] = BUILD_MESSAGE_VERSION_STRING; 12*758ccb80SChris Kay static const char build_version[] = BUILD_MESSAGE_VERSION; 13*758ccb80SChris Kay 14*758ccb80SChris Kay #endif /* BUILD_MESSAGE_H */ 15