mirror of
https://github.com/szehl/ath9k-hmac.git
synced 2025-03-16 09:06:02 +00:00
12 lines
323 B
C
Executable File
12 lines
323 B
C
Executable File
#ifndef __BACKPORT_LINUX_STRING_H
|
|
#define __BACKPORT_LINUX_STRING_H
|
|
#include_next <linux/string.h>
|
|
#include <linux/version.h>
|
|
|
|
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0))
|
|
#define memweight LINUX_BACKPORT(memweight)
|
|
extern size_t memweight(const void *ptr, size_t bytes);
|
|
#endif
|
|
|
|
#endif /* __BACKPORT_LINUX_STRING_H */
|