summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/powerpc/benchmarks/exec_target.c
blob: 3c9c144192be591ed1db8b62ea2c3108446099bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0+

/*
 * Part of fork context switch microbenchmark.
 *
 * Copyright 2018, Anton Blanchard, IBM Corp.
 */

void _exit(int);
void _start(void)
{
	_exit(0);
}