1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00
linux/arch/m68k/coldfire/vectors.h
Greg Ungerer b6880019ff m68k: coldfire: add and use "vectors.h"
When building with W=1:

    arch/m68k/coldfire/vectors.c:43:13: warning: no previous prototype for ‘trap_init’ [-Wmissing-prototypes]
     void __init trap_init(void)
                 ^~~~~~~~~

Fix this by introducing a new header file "vectors.h" for holding the
prototypes of functions implemented in arch/m68k/coldfire/vectors.c.

Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
2023-10-23 08:22:22 +10:00

3 lines
67 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
void trap_init(void);