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 v2.6.22-rc7 11 lines 205 B view raw
1#include <linux/types.h> 2 3#define strncpy __inline_strncpy 4#include <asm/string.h> 5#undef strncpy 6 7char *strncpy(char *dest, const char *src, size_t n) 8{ 9 return __inline_strncpy(dest, src, n); 10} 11