about summary refs log tree commit diff
path: root/acconfig.h
blob: 1afc2bb95c9246d34a897cafa724160aa033324c (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
27
#undef u_int16_t
#undef u_int32_t
#undef u_int64_t
#undef u_int8_t

@BOTTOM@

/* Prototypes for missing functions */

#ifndef HAVE_STRLCPY
	size_t	 strlcpy(char *, const char *, size_t);
#endif

#ifndef HAVE_STRLCAT
	size_t   strlcat(char *, const char *, size_t);
#endif

#ifndef HAVE_STRSEP
	char *strsep(char **, const char *);
#endif /* HAVE_STRSEP */

#ifndef HAVE_ERR
	void     err(int, const char *, ...);
	void     warn(const char *, ...);
	void     errx(int , const char *, ...);
	void     warnx(const char *, ...);
#endif