mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
b987febf09
No need to clutter the code with #if #else #endif. See #623875.
21 lines
306 B
C
21 lines
306 B
C
/*
|
|
* glib-compat.c
|
|
* Functions copied from glib 2.10
|
|
*
|
|
* Copyright 2005 David Schleef <ds@schleef.org>
|
|
*/
|
|
|
|
#include "gst_private.h" /* for g_warning */
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#if !GLIB_CHECK_VERSION(2,25,0)
|
|
typedef struct stat GStatBuf;
|
|
#endif
|
|
|
|
/* copies */
|
|
|
|
/* adaptations */
|
|
|
|
G_END_DECLS
|