aboutsummaryrefslogtreecommitdiff
path: root/udp.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2016-06-22 19:11:19 +0200
committerMarkus Armbruster <armbru@redhat.com>2016-07-12 16:19:16 +0200
commit97a03b9847841a4e4bdca3eeba35aa19e68ac6a3 (patch)
tree92590286d91a689ec1cb8f8c42f3350e9f185408 /udp.c
parentbecb9498d942c110c6b0b8f25f0848a8c5fc431d (diff)
downloadslirp-97a03b9847841a4e4bdca3eeba35aa19e68ac6a3.zip
slirp-97a03b9847841a4e4bdca3eeba35aa19e68ac6a3.tar.gz
slirp-97a03b9847841a4e4bdca3eeba35aa19e68ac6a3.tar.bz2
Use #include "..." for our own headers, <...> for others
Tracked down with an ugly, brittle and probably buggy Perl script. Also move includes converted to <...> up so they get included before ours where that's obviously okay. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Tested-by: Eric Blake <eblake@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'udp.c')
-rw-r--r--udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/udp.c b/udp.c
index 478221e..fde0585 100644
--- a/udp.c
+++ b/udp.c
@@ -39,7 +39,7 @@
*/
#include "qemu/osdep.h"
-#include <slirp.h>
+#include "slirp.h"
#include "ip_icmp.h"
static uint8_t udp_tos(struct socket *so);