blob: fd67f3b3ed7e247fe4bb800e841eab2b8ccc9670 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* See LICENSE file for copyright and license details. */
#ifndef LIBERROR_LIBC_H
#define LIBERROR_LIBC_H
#include <stdint.h>
int liberror_abs(int);
intmax_t liberror_imaxabs(intmax_t);
long int liberror_labs(long int);
long long int liberror_llabs(long long int);
int liberror_pipe(int[2]);
int liberror_putenv(char *);
int liberror_setenv(const char *, const char *, int);
int liberror_shutdown(int, int, const char *);
int liberror_unsetenv(const char *);
#endif
|