blob: 8c827e350655c94f43c13ab185fe220ae0bca413 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <stddef.h>
#include <stdlib.h>
#ifndef NO_MALLOC_H
#include <user/lib/vendor/dlmalloc/malloc.h>
#endif
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
_Noreturn void abort(void);
_Noreturn void exit(int);
int mkstemp(char *template);
char *getenv(const char *name);
int system(const char *cmd);
|