farbfeld

suckless image format with conversion tools
git clone git://git.suckless.org/farbfeld
Log | Files | Refs | README | LICENSE

commit 81c95f15f48184c031b3bc22985caf7d5a9272d7
parent 29b129ace10a4d86725fce6667f42a6d0bd04b13
Author: sin <sin@2f30.org>
Date:   Tue, 29 Jul 2014 12:39:21 +0100

Reorder includes

Diffstat:
Mif2png.c | 4++--
Mpng2if.c | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/if2png.c b/if2png.c @@ -1,13 +1,13 @@ /* See LICENSE file for copyright and license details. */ #include <arpa/inet.h> +#include <errno.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <errno.h> -#include "arg.h" #include <png.h> +#include "arg.h" char *argv0; diff --git a/png2if.c b/png2if.c @@ -1,13 +1,13 @@ /* See LICENSE file for copyright and license details. */ #include <arpa/inet.h> +#include <errno.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <errno.h> -#include "arg.h" #include <png.h> +#include "arg.h" char *argv0;