Use helpers to obtain task pid in printks (arch code)
[wrt350n-kernel.git] / arch / blackfin / lib / strncpy.c
blob1fecb5c71ffb21ec581d157b81ef2d2d8776bc8c
1 #include <linux/types.h>
3 #define strncpy __inline_strncpy
4 #include <asm/string.h>
5 #undef strncpy
7 char *strncpy(char *dest, const char *src, size_t n)
9 return __inline_strncpy(dest, src, n);