commit ed7b08b8d22e0f039f93f70dd23280289edb27e5
parent ba60aa33d91ba7329218117c067c4f5940b9d001
Author: FRIGN <dev@frign.de>
Date: Fri, 13 Nov 2015 03:59:37 +0100
Add _BSD_SOURCE for endian.h
Thanks Heiko ("rundstutzen") for reporting this!
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/ff2png.c b/ff2png.c
@@ -1,4 +1,5 @@
/* See LICENSE file for copyright and license details. */
+#define _BSD_SOURCE
#include <endian.h>
#include <stdint.h>
#include <stdio.h>
diff --git a/png2ff.c b/png2ff.c
@@ -1,4 +1,5 @@
/* See LICENSE file for copyright and license details. */
+#define _BSD_SOURCE
#include <endian.h>
#include <stdint.h>
#include <stdio.h>