From 5a68a3c68c8b8a474ddcbf8ebfbcea917f2d7ee2 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Sat, 1 Aug 2009 22:52:06 +0000 Subject: A few type fixes for libc functions, for 64-bit. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@77822 91177308-0d34-0410-b5e6-96231b3b80d8 --- runtime/POSIX/misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/POSIX/misc.c') diff --git a/runtime/POSIX/misc.c b/runtime/POSIX/misc.c index d0e88290..7335dee2 100644 --- a/runtime/POSIX/misc.c +++ b/runtime/POSIX/misc.c @@ -36,7 +36,7 @@ void __klee_init_environ(unsigned nvars, __klee_sym_env_var_size = var_size; } -static unsigned __strlen(const char *s) { +static size_t __strlen(const char *s) { const char *s2 = s; while (*s2) ++s2; return s2-s; @@ -54,7 +54,7 @@ char *getenv(const char *name) { if (res) { return klee_range(0, 2, name) ? res : 0; } else { - unsigned i, len = __strlen(name); + size_t i, len = __strlen(name); if (len>=MAX_SYM_ENV_SIZE) { /* Don't deal with strings to large to fit in our name. */ -- cgit 1.4.1