mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

With -Wmissing-prototypes the compiler will warn about non-static functions which don't have a prototype defined. This warning doesn't make much sense for nolibc itself but for user code it is still useful. To pacify the compiler add prototypes next to the function definitions, similar to how it is handled elsewhere in the kernel. Acked-by: Willy Tarreau <w@1wt.eu> Link: https://lore.kernel.org/r/20250123-nolibc-prototype-v1-1-e1afc5c1999a@weissschuh.net Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
27 lines
598 B
C
27 lines
598 B
C
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
|
|
/*
|
|
* signal function definitions for NOLIBC
|
|
* Copyright (C) 2017-2022 Willy Tarreau <w@1wt.eu>
|
|
*/
|
|
|
|
#ifndef _NOLIBC_SIGNAL_H
|
|
#define _NOLIBC_SIGNAL_H
|
|
|
|
#include "std.h"
|
|
#include "arch.h"
|
|
#include "types.h"
|
|
#include "sys.h"
|
|
|
|
/* This one is not marked static as it's needed by libgcc for divide by zero */
|
|
int raise(int signal);
|
|
__attribute__((weak,unused,section(".text.nolibc_raise")))
|
|
int raise(int signal)
|
|
{
|
|
return sys_kill(sys_getpid(), signal);
|
|
}
|
|
|
|
/* make sure to include all global symbols */
|
|
#include "nolibc.h"
|
|
|
|
#endif /* _NOLIBC_SIGNAL_H */
|