Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 529348
Collapse All | Expand All

(-)a/./eloop.c (-1 lines)
Lines 28-34 Link Here
28
/* Needed for ppoll(2) */
28
/* Needed for ppoll(2) */
29
#define _GNU_SOURCE
29
#define _GNU_SOURCE
30
30
31
#include <sys/queue.h>
32
#include <sys/time.h>
31
#include <sys/time.h>
33
32
34
#include <errno.h>
33
#include <errno.h>
(-)a/./dhcpcd.c (-1 lines)
Lines 30-36 const char dhcpcd_copyright[] = "Copyrig Link Here
30
#define _WITH_DPRINTF /* Stop FreeBSD bitching */
30
#define _WITH_DPRINTF /* Stop FreeBSD bitching */
31
31
32
#include <sys/file.h>
32
#include <sys/file.h>
33
#include <sys/queue.h>
34
#include <sys/socket.h>
33
#include <sys/socket.h>
35
#include <sys/stat.h>
34
#include <sys/stat.h>
36
#include <sys/time.h>
35
#include <sys/time.h>
(-)a/./ipv6nd.h (-2 lines)
Lines 28-35 Link Here
28
#ifndef IPV6ND_H
28
#ifndef IPV6ND_H
29
#define IPV6ND_H
29
#define IPV6ND_H
30
30
31
#include <sys/queue.h>
32
33
#include <time.h>
31
#include <time.h>
34
32
35
#include "dhcpcd.h"
33
#include "dhcpcd.h"
(-)a/./compat/queue.h (-1 lines)
Lines 34-40 Link Here
34
#ifndef COMPAT_QUEUE_H
34
#ifndef COMPAT_QUEUE_H
35
#define COMPAT_QUEUE_H
35
#define COMPAT_QUEUE_H
36
36
37
#include <sys/queue.h>
38
/*
37
/*
39
 * Tail queue definitions.
38
 * Tail queue definitions.
40
 */
39
 */
(-)a/./compat/svis.c (+3 lines)
Lines 60-65 Link Here
60
 * Please use the source in NetBSD for a fuller working copy.
60
 * Please use the source in NetBSD for a fuller working copy.
61
 */
61
 */
62
62
63
#define __NEED_uint8_t
63
#include <ctype.h>
64
#include <ctype.h>
64
#include <errno.h>
65
#include <errno.h>
65
#include <limits.h>
66
#include <limits.h>
Lines 71-76 Link Here
71
#undef BELL
72
#undef BELL
72
#define BELL '\a'
73
#define BELL '\a'
73
74
75
typedef uint8_t u_char;
76
74
#define isoctal(c)	(((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
77
#define isoctal(c)	(((u_char)(c)) >= '0' && ((u_char)(c)) <= '7')
75
#define iswhite(c)	(c == ' ' || c == '\t' || c == '\n')
78
#define iswhite(c)	(c == ' ' || c == '\t' || c == '\n')
76
79
(-)a/./dhcpcd.h (-1 lines)
Lines 28-34 Link Here
28
#ifndef DHCPCD_H
28
#ifndef DHCPCD_H
29
#define DHCPCD_H
29
#define DHCPCD_H
30
30
31
#include <sys/queue.h>
32
#include <sys/socket.h>
31
#include <sys/socket.h>
33
#include <net/if.h>
32
#include <net/if.h>
34
33
(-)a/./common.c (-4 lines)
Lines 30-39 Link Here
30
#  define _GNU_SOURCE
30
#  define _GNU_SOURCE
31
#endif
31
#endif
32
32
33
#ifndef __sun
34
#  include <sys/cdefs.h>
35
#endif
36
37
#ifdef __APPLE__
33
#ifdef __APPLE__
38
#  include <mach/mach_time.h>
34
#  include <mach/mach_time.h>
39
#  include <mach/kern_return.h>
35
#  include <mach/kern_return.h>
(-)a/./auth.h (-2 lines)
Lines 28-35 Link Here
28
#ifndef AUTH_H
28
#ifndef AUTH_H
29
#define AUTH_H
29
#define AUTH_H
30
30
31
#include <sys/queue.h>
32
33
#define DHCPCD_AUTH_SEND	(1 << 0)
31
#define DHCPCD_AUTH_SEND	(1 << 0)
34
#define DHCPCD_AUTH_REQUIRE	(1 << 1)
32
#define DHCPCD_AUTH_REQUIRE	(1 << 1)
35
#define DHCPCD_AUTH_RDM_COUNTER	(1 << 2)
33
#define DHCPCD_AUTH_RDM_COUNTER	(1 << 2)
(-)a/./ipv6.h (-1 lines)
Lines 28-34 Link Here
28
#ifndef IPV6_H
28
#ifndef IPV6_H
29
#define IPV6_H
29
#define IPV6_H
30
30
31
#include <sys/queue.h>
32
#include <sys/uio.h>
31
#include <sys/uio.h>
33
32
34
#include <netinet/in.h>
33
#include <netinet/in.h>
(-)a/./auth.c (-1 lines)
Lines 26-32 Link Here
26
 */
26
 */
27
27
28
#include <sys/file.h>
28
#include <sys/file.h>
29
#include <sys/queue.h>
30
#include <errno.h>
29
#include <errno.h>
31
#include <fcntl.h>
30
#include <fcntl.h>
32
#include <inttypes.h>
31
#include <inttypes.h>
(-)a/./if-options.c (-1 lines)
Lines 29-35 Link Here
29
29
30
#include <sys/param.h>
30
#include <sys/param.h>
31
#include <sys/types.h>
31
#include <sys/types.h>
32
#include <sys/queue.h>
33
32
34
#include <arpa/inet.h>
33
#include <arpa/inet.h>
35
34
(-)a/./ipv4.c (-1 lines)
Lines 25-31 Link Here
25
 * SUCH DAMAGE.
25
 * SUCH DAMAGE.
26
 */
26
 */
27
27
28
#include <sys/queue.h>
29
#include <sys/socket.h>
28
#include <sys/socket.h>
30
#include <sys/types.h>
29
#include <sys/types.h>
31
30

Return to bug 529348