$OpenBSD: patch-src_corelib_tools_qbytearray_h,v 1.2 2017/07/17 08:34:37 zhuk Exp $
Get rid of strcpy().
Index: src/corelib/tools/qbytearray.h
--- src/corelib/tools/qbytearray.h.orig
+++ src/corelib/tools/qbytearray.h
@@ -83,7 +83,9 @@ inline uint qstrnlen(const char *str, uint maxlen)
     return length;
 }
 
+#ifndef Q_OS_OPENBSD
 Q_CORE_EXPORT char *qstrcpy(char *dst, const char *src);
+#endif
 Q_CORE_EXPORT char *qstrncpy(char *dst, const char *src, uint len);
 
 Q_CORE_EXPORT int qstrcmp(const char *str1, const char *str2);
