=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/string.h,v retrieving revision 1.26 retrieving revision 1.27 diff -c -r1.26 -r1.27 *** src/include/string.h 2013/05/13 10:37:02 1.26 --- src/include/string.h 2014/01/22 21:06:45 1.27 *************** *** 1,4 **** ! /* $OpenBSD: string.h,v 1.26 2013/05/13 10:37:02 ajacoutot Exp $ */ /* $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: string.h,v 1.27 2014/01/22 21:06:45 tedu Exp $ */ /* $NetBSD: string.h,v 1.6 1994/10/26 00:56:30 cgd Exp $ */ /*- *************** *** 126,131 **** --- 126,133 ---- #endif #if __BSD_VISIBLE + void explicit_bzero(void *, size_t) + __attribute__ ((__bounded__(__buffer__,1,2))); void *memmem(const void *, size_t, const void *, size_t); void *memrchr(const void *, int, size_t); char *strcasestr(const char *, const char *);