Adds forwards declarations in headers and includes all headers in sources, even if they are found by transitive includes.
14 lines
308 B
C
14 lines
308 B
C
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#ifndef METADATA_H
|
|
#define METADATA_H
|
|
|
|
#include "common.h"
|
|
struct loom;
|
|
struct proc;
|
|
|
|
USE_RET int metadata_load(const char *path, struct loom *loom, struct proc *proc);
|
|
|
|
#endif /* METADATA_H */
|