mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-30 05:43:28 +02:00
Don't provide g_rmdir() as a macro expanding to rmdir, since rmdir is not
2006-01-02 Matthias Clasen <mclasen@redhat.com> * glib/glib.symbols: * glib/gstdio.h: * glib/gstdio.c (g_rmdir): Don't provide g_rmdir() as a macro expanding to rmdir, since rmdir is not declared in a portable system header we can include in gstdio.h. (#325249, Jani Monoses)
This commit is contained in:
committed by
Matthias Clasen
parent
0a3f176305
commit
a5a39466a1
@@ -30,7 +30,9 @@ G_BEGIN_DECLS
|
||||
#if defined(G_OS_UNIX) && !defined(G_STDIO_NO_WRAP_ON_UNIX)
|
||||
|
||||
/* Just pass on to the system functions, so there's no potential for data
|
||||
* format mismatches, especially with large file interfaces.
|
||||
* format mismatches, especially with large file interfaces.
|
||||
* rmdir() can't be handled in this way, since it is not defined in
|
||||
* a portable system header that we could include here.
|
||||
*/
|
||||
|
||||
#define g_access access
|
||||
@@ -44,10 +46,11 @@ G_BEGIN_DECLS
|
||||
#define g_lstat lstat
|
||||
#define g_unlink unlink
|
||||
#define g_remove remove
|
||||
#define g_rmdir rmdir
|
||||
#define g_fopen fopen
|
||||
#define g_freopen freopen
|
||||
|
||||
int g_rmdir (const gchar *filename);
|
||||
|
||||
#else /* ! G_OS_UNIX */
|
||||
|
||||
/* Wrappers for C library functions that take pathname arguments. On
|
||||
@@ -91,7 +94,7 @@ int g_unlink (const gchar *filename);
|
||||
|
||||
int g_remove (const gchar *filename);
|
||||
|
||||
int g_rmdir (const gchar *filename);
|
||||
int g_rmdir (const gchar *filename);
|
||||
|
||||
FILE *g_fopen (const gchar *filename,
|
||||
const gchar *mode);
|
||||
|
Reference in New Issue
Block a user