projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ext2: fix return of uninitialised variable
[linux-2.6]
/
arch
/
blackfin
/
lib
/
strncpy.c
1
#include <linux/types.h>
2
3
#define strncpy __inline_strncpy
4
#include <asm/string.h>
5
#undef strncpy
6
7
char *strncpy(char *dest, const char *src, size_t n)
8
{
9
return __inline_strncpy(dest, src, n);
10
}
11