glib/gstdio.h glib/gstdio.c Wrap also creat(). (#171285)

2005-04-08  Tor Lillqvist  <tml@novell.com>

	* glib/gstdio.h
	* glib/gstdio.c
	* glib/glib.symbols (g_creat): Wrap also  creat(). (#171285)
This commit is contained in:
Tor Lillqvist
2005-04-08 12:21:28 +00:00
committed by Tor Lillqvist
parent 9099d64b3a
commit ff79c0b525
7 changed files with 82 additions and 8 deletions

View File

@@ -34,6 +34,7 @@
#define g_access access
#define g_chmod chmod
#define g_open open
#define g_creat creat
#define g_rename rename
#define g_mkdir mkdir
#define g_stat stat
@@ -66,6 +67,9 @@ int g_open (const gchar *filename,
int flags,
int mode);
int g_creat (const gchar *filename,
int mode);
int g_rename (const gchar *oldfilename,
const gchar *newfilename);