Also move the #define for O_BINARY from gutils.c to gfileutils.c.

This commit is contained in:
Tor Lillqvist 2000-10-31 05:51:24 +00:00
parent dd3f4d6bb3
commit 03f908d84b
4 changed files with 8 additions and 8 deletions

View File

@ -56,6 +56,10 @@
#define S_ISLNK(x) 0
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#define _(x) x
/**

View File

@ -56,6 +56,10 @@
#define S_ISLNK(x) 0
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#define _(x) x
/**

View File

@ -76,10 +76,6 @@
#include <langinfo.h>
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
const guint glib_major_version = GLIB_MAJOR_VERSION;
const guint glib_minor_version = GLIB_MINOR_VERSION;
const guint glib_micro_version = GLIB_MICRO_VERSION;

View File

@ -76,10 +76,6 @@
#include <langinfo.h>
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
const guint glib_major_version = GLIB_MAJOR_VERSION;
const guint glib_minor_version = GLIB_MINOR_VERSION;
const guint glib_micro_version = GLIB_MICRO_VERSION;