Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*	$NetBSD: msg_053.c,v 1.6 2022/10/01 09:42:40 rillig Exp $	*/
# 3 "msg_053.c"

// Test for message: declared argument '%s' is missing [53]

/* expect+2: error: old-style declaration; add 'int' [1] */
oldstyle(argument)
	int argument;
	/* expect+1: error: declared argument 'extra_argument' is missing [53] */
	int extra_argument;
{
	return argument;
}