about summary refs log tree commit diff homepage
path: root/runtime/klee-libc/memset.c
blob: ee9ecb876d533ad93a72e2537a2dd2a094ae0099 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//===-- 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;
}