Use relative includes instead of system includes consistently.

This commit is contained in:
Evan Jones 2010-12-02 10:26:12 -05:00 committed by Nick Mathewson
parent ef5e65a484
commit fbe64f216c
11 changed files with 22 additions and 22 deletions

View File

@ -47,7 +47,7 @@
reported spuriously. reported spuriously.
*/ */
#include <event2/util.h> #include "event2/util.h"
/** Represents a */ /** Represents a */
struct event_change { struct event_change {

18
evdns.c
View File

@ -68,16 +68,16 @@
#include <shlobj.h> #include <shlobj.h>
#endif #endif
#include <event2/dns.h> #include "event2/dns.h"
#include <event2/dns_struct.h> #include "event2/dns_struct.h"
#include <event2/dns_compat.h> #include "event2/dns_compat.h"
#include <event2/util.h> #include "event2/util.h"
#include <event2/event.h> #include "event2/event.h"
#include <event2/event_struct.h> #include "event2/event_struct.h"
#include <event2/thread.h> #include "event2/thread.h"
#include <event2/bufferevent.h> #include "event2/bufferevent.h"
#include <event2/bufferevent_struct.h> #include "event2/bufferevent_struct.h"
#include "bufferevent-internal.h" #include "bufferevent-internal.h"
#include "defer-internal.h" #include "defer-internal.h"

View File

@ -64,7 +64,7 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
#include <event2/thread.h> #include "event2/thread.h"
#include "evthread-internal.h" #include "evthread-internal.h"
#include "event-internal.h" #include "event-internal.h"

View File

@ -30,7 +30,7 @@
extern "C" { extern "C" {
#endif #endif
#include <event2/thread.h> #include "event2/thread.h"
#include "event2/event-config.h" #include "event2/event-config.h"
#include "util-internal.h" #include "util-internal.h"

View File

@ -28,7 +28,7 @@
#ifndef _EVENT_DISABLE_THREAD_SUPPORT #ifndef _EVENT_DISABLE_THREAD_SUPPORT
#include <event2/thread.h> #include "event2/thread.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -30,7 +30,7 @@
#include <pthread.h> #include <pthread.h>
struct event_base; struct event_base;
#include <event2/thread.h> #include "event2/thread.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>

View File

@ -34,7 +34,7 @@
#endif #endif
struct event_base; struct event_base;
#include <event2/thread.h> #include "event2/thread.h"
#include "mm-internal.h" #include "mm-internal.h"
#include "evthread-internal.h" #include "evthread-internal.h"

View File

@ -35,7 +35,7 @@
#include <sys/socket.h> #include <sys/socket.h>
#endif #endif
#include "event2/event-config.h" #include "event2/event-config.h"
#include <event2/util.h> #include "event2/util.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {

View File

@ -44,10 +44,10 @@
#include <unistd.h> #include <unistd.h>
#endif #endif
#include <event2/listener.h> #include "event2/listener.h"
#include <event2/util.h> #include "event2/util.h"
#include <event2/event.h> #include "event2/event.h"
#include <event2/event_struct.h> #include "event2/event_struct.h"
#include "mm-internal.h" #include "mm-internal.h"
#include "util-internal.h" #include "util-internal.h"
#include "log-internal.h" #include "log-internal.h"

View File

@ -27,7 +27,7 @@
#ifndef _LOG_H_ #ifndef _LOG_H_
#define _LOG_H_ #define _LOG_H_
#include <event2/util.h> #include "event2/util.h"
#ifdef __GNUC__ #ifdef __GNUC__
#define EV_CHECK_FMT(a,b) __attribute__((format(printf, a, b))) #define EV_CHECK_FMT(a,b) __attribute__((format(printf, a, b)))

View File

@ -30,7 +30,7 @@
extern "C" { extern "C" {
#endif #endif
#include <event2/util.h> #include "event2/util.h"
/** A token bucket is an internal structure that tracks how many bytes we are /** A token bucket is an internal structure that tracks how many bytes we are
* currently willing to read or write on a given bufferevent or group of * currently willing to read or write on a given bufferevent or group of