exec_target.c 192 B

12345678910111213
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Part of fork context switch microbenchmark.
  4. *
  5. * Copyright 2018, Anton Blanchard, IBM Corp.
  6. */
  7. void _exit(int);
  8. void _start(void)
  9. {
  10. _exit(0);
  11. }