Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 135636
b: refs/heads/master
c: 6faf250
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell authored and Martin Schwidefsky committed Mar 26, 2009
1 parent 76704d0 commit 0333249
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9c8a08d7a74b07ab2c47e259231d9d0f0047a3c1
refs/heads/master: 6faf250789dfd35146a71402f9be245be82bf01e
8 changes: 7 additions & 1 deletion trunk/arch/s390/include/asm/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,13 @@ static inline size_t strnlen(const char * s, size_t n)
: "+a" (end), "+a" (tmp) : "d" (r0) : "cc");
return end - s;
}

#else /* IN_ARCH_STRING_C */
void *memchr(const void * s, int c, size_t n);
void *memscan(void *s, int c, size_t n);
char *strcat(char *dst, const char *src);
char *strcpy(char *dst, const char *src);
size_t strlen(const char *s);
size_t strnlen(const char * s, size_t n);
#endif /* !IN_ARCH_STRING_C */

#endif /* __KERNEL__ */
Expand Down

0 comments on commit 0333249

Please sign in to comment.