Rodrigo Arias
ddbb7dd9f4
Adds forwards declarations in headers and includes all headers in sources, even if they are found by transitive includes.
18 lines
269 B
C
18 lines
269 B
C
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
|
|
* SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
#include "instr.h"
|
|
#include "ovni.h"
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
ovni_version_check();
|
|
|
|
/* Create a dummy trace */
|
|
instr_start(0, 1);
|
|
instr_end();
|
|
|
|
return 0;
|
|
}
|