forked from embench/embench-iot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchip.c
More file actions
32 lines (22 loc) · 638 Bytes
/
Copy pathchip.c
File metadata and controls
32 lines (22 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Common board.c for the benchmarks
Copyright (C) 2018-2019 Embecosm Limited
Contributor: Jeremy Bennett <jeremy.bennett@embecosm.com>
This file is part of Embench and was formerly part of the Bristol/Embecosm
Embedded Benchmark Suite.
SPDX-License-Identifier: GPL-3.0-or-later */
/* This is just a wrapper for the chip specific support file if there is one. */
#include "config.h"
#ifdef HAVE_CHIPSUPPORT_H
#include "chipsupport.c"
#endif
/* Standard C does not permit empty translation units, so provide one. */
static void
empty_func ()
{
}
/*
Local Variables:
mode: C
c-file-style: "gnu"
End:
*/