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_154.c,v 1.6 2023/03/28 14:44:35 rillig Exp $	*/
# 3 "msg_154.c"

// Test for message: illegal combination of %s '%s' and %s '%s', arg #%d [154]

/* lint1-extra-flags: -X 351 */

void sink_int(int);

void
example(int *ptr)
{
	/* expect+1: warning: illegal combination of integer 'int' and pointer 'pointer to int', arg #1 [154] */
	sink_int(ptr);
}