changeset 2907:afd2d900d1e9

C++: Need to include string.h for strlen() on some platforms.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Mon, 26 Dec 2022 22:35:25 +0000
parents 9d6280f206bd
children 1567f787b965
files dw.hpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dw.hpp	Sun Dec 25 16:21:52 2022 +0000
+++ b/dw.hpp	Mon Dec 26 22:35:25 2022 +0000
@@ -6,6 +6,7 @@
 #ifndef _HPP_DW
 #define _HPP_DW
 #include <dw.h>
+#include <string.h>
 
 // Attempt to support compilers without nullptr type literal
 #if __cplusplus >= 201103L