summaryrefslogtreecommitdiff
path: root/base.c
blob: 8e7c03b2dfae9f54a50a2d1aa81c70ab2d7622d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <unistd.h>
#include <stdbool.h>

int __errno = 0;
void *_impure_ptr = NULL;

void __sinit(void) {
}

void *memset(void *s, int c, size_t n) {
    char *end = (char *)s + n;
    for (char *p = (char *)s; p < end; p++)
        *p = (char)c;
    return s;
}

size_t strlen(const char *s) {
    const char *start = s;
    while (*s++);
    return s - start - 1;
}

void __assert_func(bool value) {
}