Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13 13 lines 335 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/export.h> 3#include <linux/compiler.h> 4#include <uapi/linux/swab.h> 5 6/* To silence -Wmissing-prototypes. */ 7unsigned long long __bswapdi2(unsigned long long u); 8 9unsigned long long notrace __bswapdi2(unsigned long long u) 10{ 11 return ___constant_swab64(u); 12} 13EXPORT_SYMBOL(__bswapdi2);