Updates following review of SSL_stateless() code
[openssl.git] / test / ecstresstest.c
index e16ccd59f6befa0be48e72f0ce0874f18cb4a8c4..3c6d2d5a595c4861e7a2d954d1fa6b51595465e0 100644 (file)
@@ -8,7 +8,7 @@
  * or in the file LICENSE in the source distribution.
  */
 
-#include "e_os.h"
+#include "internal/nelem.h"
 #include "testutil.h"
 
 #include <stdio.h>
@@ -109,7 +109,7 @@ static int atoi64(const char *in, int64_t *result)
     for ( ; *in != '\0'; in++) {
         char c = *in;
 
-        if (!isdigit(c))
+        if (!isdigit((unsigned char)c))
             return 0;
         ret *= 10;
         ret += (c - '0');