/*
 * SYSCALL_DEFINE1(exit_group, int, error_code)
 */
#include "sanitise.h"

struct syscallentry syscall_exit_group = {
	.name = "exit_group",
	.num_args = 1,
	.flags = AVOID_SYSCALL, // No args to fuzz, confuses fuzzer
	.arg1name = "error_code",
};
