aboutsummaryrefslogtreecommitdiffstats
path: root/ports/linux/guts/syscall.c
blob: 0fefddcde912c0856466af5c60ba4c06bfe6155a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2018 Wind River Systems; see
 * guts/COPYRIGHT for information.
 *
 * SPDX-License-Identifier: LGPL-2.1-only
 *
 * long syscall(long nr)
 *	long rc = -1;
 */

	/* we should never get here, syscall is hand-wrapped */
	rc = -1;
	errno = ENOTSUPP;

/*	return rc;
 * }
 */