diff options
Diffstat (limited to 'runtime/klee-libc/memset.c')
-rw-r--r-- | runtime/klee-libc/memset.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/runtime/klee-libc/memset.c b/runtime/klee-libc/memset.c deleted file mode 100644 index 81025d32..00000000 --- a/runtime/klee-libc/memset.c +++ /dev/null @@ -1,17 +0,0 @@ -/*===-- memset.c ----------------------------------------------------------===// -// -// The KLEE Symbolic Virtual Machine -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===*/ - -#include <stdlib.h> - -void *memset(void * dst, int s, size_t count) { - char * a = dst; - while (count-- > 0) - *a++ = s; - return dst; -} |