blob: d79018b3129b921a638773bbb44ee5176facc3cd [file] [log] [blame]
Julian Hall69a25f32022-09-26 14:55:57 +01001/*
2 * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef MEDIA_DISK_PARTITION_TABLE_H
8#define MEDIA_DISK_PARTITION_TABLE_H
9
10#include <stdint.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16/**
17 * Export tf-a version with C++ linkage support.
18 */
19#include <drivers/partition/gpt.h>
20#include <drivers/partition/partition.h>
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif /* MEDIA_DISK_PARTITION_TABLE_H */