mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 15:58:47 +00:00
9 lines
170 B
C
9 lines
170 B
C
|
#include <linux/module.h>
|
||
|
#include <linux/bug.h>
|
||
|
|
||
|
void copy_from_user_overflow(void)
|
||
|
{
|
||
|
WARN(1, "Buffer overflow detected!\n");
|
||
|
}
|
||
|
EXPORT_SYMBOL(copy_from_user_overflow);
|