atari: work around 'longjmp' undeclared error

This seems to be due to glibc headers being installed instead of MiNT
ones...
This commit is contained in:
François Revol 2018-06-14 14:27:06 +02:00
parent 7d6051841b
commit f7e46b97e9

View File

@ -27,6 +27,9 @@
///@file fileformats.c ///@file fileformats.c
/// Saving and loading different picture formats. /// Saving and loading different picture formats.
#ifdef __MINT__
#undef _GNU_SOURCE
#endif
#include <string.h> #include <string.h>
#ifndef __no_pnglib__ #ifndef __no_pnglib__
#include <png.h> #include <png.h>