File: acconfig.h

package info (click to toggle)
trickle 1.07-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,124 kB
  • ctags: 529
  • sloc: sh: 7,815; ansic: 4,725; makefile: 79
file content (46 lines) | stat: -rw-r--r-- 891 bytes parent folder | download | duplicates (8)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#undef socklen_t
#undef u_int16_t
#undef u_int32_t
#undef u_int64_t
#undef u_int8_t

#undef in_addr_t

#undef SYSCONFDIR
#undef LIBDIR

#undef SPT_TYPE
#undef HAVE___PROGNAME
#undef DL_NEED_UNDERSCORE
#undef NODLOPEN
#undef DLOPENLIBC

@BOTTOM@

/* Prototypes for missing functions */
#ifndef HAVE_STRLCAT
size_t	 strlcat(char *, const char *, size_t);
#endif

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

#ifndef HAVE_SETENV
int setenv(register const char *name, register const char *value, int rewrite);
#endif /* !HAVE_SETENV */

#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

#ifndef HAVE_DAEMON
int      daemon(int, int);
#endif /* HAVE_DAEMON */