summaryrefslogtreecommitdiff
path: root/src/template/test_template_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/template/test_template_api.c')
-rw-r--r--src/template/test_template_api.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/template/test_template_api.c b/src/template/test_template_api.c
index 7956a4d29..9f845d975 100644
--- a/src/template/test_template_api.c
+++ b/src/template/test_template_api.c
@@ -16,7 +16,7 @@
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file template/test_template_api.c 21 * @file template/test_template_api.c
22 * @brief testcase for template.c 22 * @brief testcase for template.c
@@ -24,17 +24,17 @@
24#include "platform.h" 24#include "platform.h"
25 25
26static int 26static int
27check () 27check()
28{ 28{
29 return 0; 29 return 0;
30} 30}
31 31
32int 32int
33main (int argc, char *argv[]) 33main(int argc, char *argv[])
34{ 34{
35 int ret; 35 int ret;
36 36
37 ret = check (); 37 ret = check();
38 38
39 return ret; 39 return ret;
40} 40}