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

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

/*	return rc;
 * }
 */