mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-04 15:37:45 -04:00
9 lines
197 B
C
9 lines
197 B
C
#include <linux/export.h>
|
|
#include <linux/bug.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
void copy_from_user_overflow(void)
|
|
{
|
|
WARN(1, "Buffer overflow detected!\n");
|
|
}
|
|
EXPORT_SYMBOL(copy_from_user_overflow);
|