]> Git Repo - u-boot.git/blame - lib/libavb/avb_version.c
lib: uuid: supporting building as part of host tools
[u-boot.git] / lib / libavb / avb_version.c
CommitLineData
897a1d94 1// SPDX-License-Identifier: MIT
d8f9d2af
IO
2/*
3 * Copyright (C) 2017 The Android Open Source Project
d8f9d2af
IO
4 */
5
6#include "avb_version.h"
7
8#define AVB_QUOTE(str) #str
9#define AVB_EXPAND_AND_QUOTE(str) AVB_QUOTE(str)
10
11/* Keep in sync with get_release_string() in avbtool. */
12const char* avb_version_string(void) {
13 return AVB_EXPAND_AND_QUOTE(AVB_VERSION_MAJOR) "." AVB_EXPAND_AND_QUOTE(
14 AVB_VERSION_MINOR) "." AVB_EXPAND_AND_QUOTE(AVB_VERSION_SUB);
15}
This page took 0.082757 seconds and 4 git commands to generate.