summaryrefslogtreecommitdiff
path: root/ecomp-c/libc-hosted.c
blob: 73097f9e6d0dc0b7bea6790b4c94827d03cbbbe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * include files for C library of the host. Currently only tested
 * with glibc 2.31.
 */

#include <stdarg.h>
#include <stddef.h>

#define _XOPEN_SOURCE 600
#include <bsd/string.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <malloc.h>