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_090.c,v 1.7 2023/07/07 06:03:31 rillig Exp $	*/
# 3 "msg_090.c"

// Test for message: inconsistent redeclaration of extern '%s' [90]

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

extern int random_number(void);

void
use(void)
{
	/* expect+3: warning: 'random_number' unused in function 'use' [192] */
	/* expect+2: warning: nested 'extern' declaration of 'random_number' [352] */
	/* expect+1: warning: inconsistent redeclaration of extern 'random_number' [90] */
	extern int random_number(int);
}