blob: 9bc9a26d82bf5d70fec3e7d098d4b6776e6f5b98 (
plain) (
blame)
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
26
|
/* See LICENSE file for copyright and license details. */
#include "liberror-libc.h"
#include <netinet/in.h>
#include <sys/socket.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <liberror.h>
#if defined(__GNUC__)
# define GCC_ATTRIBUTES(...) __attribute__((__VA_ARGS__))
#else
# define GCC_ATTRIBUTES(...)
#endif
#define HIDDEN GCC_ATTRIBUTES(__visibility__("hidden"))
HIDDEN void liberror_libc_set_error_one_file(const char *, const char *, const char *, int, const char *);
|