mirror of https://github.com/GNOME/gimp.git
re-added fallback definitions for _O_BINARY and _O_TEMPORARY
2003-07-27 Henrik Brix Andersen <brix@gimp.org> * app/base/tile-swap.c: re-added fallback definitions for _O_BINARY and _O_TEMPORARY
This commit is contained in:
parent
f62a884ea1
commit
ea648dc9be
|
@ -1,3 +1,8 @@
|
|||
2003-07-27 Henrik Brix Andersen <brix@gimp.org>
|
||||
|
||||
* app/base/tile-swap.c: re-added fallback definitions for
|
||||
_O_BINARY and _O_TEMPORARY
|
||||
|
||||
2003-07-27 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimp/gimp.def
|
||||
|
|
|
@ -38,6 +38,13 @@
|
|||
|
||||
#include "base-types.h"
|
||||
|
||||
#ifndef _O_BINARY
|
||||
#define _O_BINARY 0
|
||||
#endif
|
||||
#ifndef _O_TEMPORARY
|
||||
#define _O_TEMPORARY 0
|
||||
#endif
|
||||
|
||||
#include "tile.h"
|
||||
#include "tile-private.h"
|
||||
#include "tile-swap.h"
|
||||
|
|
Loading…
Reference in New Issue