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