aboutsummaryrefslogtreecommitdiff
path: root/target-info.c
blob: 84b18931e7eff456f5b2e056a2a69671d10b1450 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * QEMU target info helpers
 *
 *  Copyright (c) Linaro
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#include "qemu/osdep.h"
#include "qemu/target-info.h"
#include "qemu/target-info-impl.h"

const char *target_name(void)
{
    return target_info()->target_name;
}