mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Appropriate namespace protection for memmem(3).
Submitted by: wollman MFC after: 3 days
This commit is contained in:
parent
6050c8fe05
commit
da506dcad2
1 changed files with 2 additions and 0 deletions
|
|
@ -61,7 +61,9 @@ void *memccpy(void * __restrict, const void * __restrict, int, size_t);
|
|||
void *memchr(const void *, int, size_t) __pure;
|
||||
int memcmp(const void *, const void *, size_t) __pure;
|
||||
void *memcpy(void * __restrict, const void * __restrict, size_t);
|
||||
#if __BSD_VISIBLE
|
||||
void *memmem(const void *, size_t, const void *, size_t);
|
||||
#endif
|
||||
void *memmove(void *, const void *, size_t);
|
||||
void *memset(void *, int, size_t);
|
||||
#if __BSD_VISIBLE
|
||||
|
|
|
|||
Loading…
Reference in a new issue