Pull up following revision(s) (requested by kamil in ticket #561):

include/string.h: 1.52
Mark in string.h: memccpy(3) and strdup(3) as _POSIX_C_SOURCE >= 2001
This commit is contained in:
snj 2018-02-25 23:53:59 +00:00
parent 0e83db99b6
commit df44eb1829
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: string.h,v 1.51 2016/10/12 20:01:22 christos Exp $ */
/* $NetBSD: string.h,v 1.51.6.1 2018/02/25 23:53:59 snj Exp $ */
/*-
* Copyright (c) 1990, 1993
@ -74,7 +74,8 @@ int strerror_r(int, char *, size_t);
#endif /* _POSIX_C_SOURCE >= 199506 || XOPEN_SOURCE >= 500 || ... */
size_t strxfrm(char * __restrict, const char * __restrict, size_t);
#if defined(_XOPEN_SOURCE) || defined(_NETBSD_SOURCE)
#if (_POSIX_C_SOURCE - 0 >= 200112L) || defined(_XOPEN_SOURCE) || \
defined(_NETBSD_SOURCE)
void *memccpy(void *, const void *, int, size_t);
char *strdup(const char *);
#endif