Browse Source

dtoolbase: Add missing includes to pstrtod.cxx

rdb 1 year ago
parent
commit
fc1d95ae1d
1 changed files with 3 additions and 0 deletions
  1. 3 0
      dtool/src/dtoolbase/pstrtod.cxx

+ 3 - 0
dtool/src/dtoolbase/pstrtod.cxx

@@ -16,9 +16,12 @@
 #include <ctype.h>
 #include <ctype.h>
 #include <math.h>
 #include <math.h>
 #include <limits>
 #include <limits>
+#include <string.h>
 
 
 #ifdef _WIN32
 #ifdef _WIN32
 #define strncasecmp _strnicmp
 #define strncasecmp _strnicmp
+#else
+#include <strings.h>
 #endif
 #endif
 
 
 /**
 /**