diff options
| author | David Schultz <das@FreeBSD.org> | 2009-03-14 19:03:34 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2009-03-14 19:03:34 +0000 |
| commit | dd5185d15f4be6577504f61e0bf57d00334f53a8 (patch) | |
| tree | 65b0ffcde2a74511714bd466a02f0b6887c37282 /include/string.h | |
| parent | 03381649152e21b2c788ffa91f379896055efd63 (diff) | |
Notes
Diffstat (limited to 'include/string.h')
| -rw-r--r-- | include/string.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index 5923cb5ef7dd..bd4ed2ebd951 100644 --- a/include/string.h +++ b/include/string.h @@ -55,11 +55,13 @@ typedef __size_t size_t; #endif __BEGIN_DECLS -#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE +#if __XSI_VISIBLE >= 600 void *memccpy(void * __restrict, const void * __restrict, int, size_t); #endif void *memchr(const void *, int, size_t) __pure; +#if __BSD_VISIBLE void *memrchr(const void *, int, size_t) __pure; +#endif int memcmp(const void *, const void *, size_t) __pure; void *memcpy(void * __restrict, const void * __restrict, size_t); #if __BSD_VISIBLE |
