summaryrefslogtreecommitdiff
path: root/src/user/lib/include/stdlib.h
blob: e2e3996ecaa4c5230dcc42874b4e16e43d41cf34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include <stddef.h>
#include <stdlib.h>

#ifndef NO_MALLOC_H
#include <user/lib/vendor/dlmalloc/malloc.h>
#endif

_Noreturn void abort(void);

int mkstemp(char *template);
char *getenv(const char *name);
int system(const char *cmd);