diff options
author | Markus Armbruster <armbru@redhat.com> | 2016-06-22 19:11:19 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2016-07-12 16:19:16 +0200 |
commit | 97a03b9847841a4e4bdca3eeba35aa19e68ac6a3 (patch) | |
tree | 92590286d91a689ec1cb8f8c42f3350e9f185408 /udp.c | |
parent | becb9498d942c110c6b0b8f25f0848a8c5fc431d (diff) | |
download | slirp-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |