mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
removed #include <unistd.h> sneaked in by sopwith in november.
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org> * gcompletion.h: removed #include <unistd.h> sneaked in by sopwith in november.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -1,3 +1,8 @@
|
||||
Tue May 8 15:33:31 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gcompletion.h: removed #include <unistd.h> sneaked in by
|
||||
sopwith in november.
|
||||
|
||||
2001-05-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gmain.c, gthread.c, gthread.h: Moved func and arg members from
|
||||
|
@@ -66,6 +66,7 @@ only one statement is expected by the compiler.
|
||||
Portable way to copy <type>va_list</type> variables.
|
||||
</para>
|
||||
|
||||
<!-- # Unused Parameters # -->
|
||||
@ap1: the <type>va_list</type> variable to place a copy of @ap2 in.
|
||||
@ap2: a <type>va_list</type>.
|
||||
|
||||
|
@@ -29,9 +29,6 @@
|
||||
|
||||
#include <glist.h>
|
||||
#include <stddef.h> /* For size_t */
|
||||
#ifdef G_OS_UNIX
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@@ -42,7 +39,9 @@ typedef gchar* (*GCompletionFunc) (gpointer);
|
||||
/* GCompletion
|
||||
*/
|
||||
|
||||
typedef int (*GCompletionStrncmpFunc)(const char *s1, const char *s2, size_t n);
|
||||
typedef gint (*GCompletionStrncmpFunc) (const gchar *s1,
|
||||
const gchar *s2,
|
||||
size_t n);
|
||||
|
||||
struct _GCompletion
|
||||
{
|
||||
|
@@ -29,9 +29,6 @@
|
||||
|
||||
#include <glist.h>
|
||||
#include <stddef.h> /* For size_t */
|
||||
#ifdef G_OS_UNIX
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
@@ -42,7 +39,9 @@ typedef gchar* (*GCompletionFunc) (gpointer);
|
||||
/* GCompletion
|
||||
*/
|
||||
|
||||
typedef int (*GCompletionStrncmpFunc)(const char *s1, const char *s2, size_t n);
|
||||
typedef gint (*GCompletionStrncmpFunc) (const gchar *s1,
|
||||
const gchar *s2,
|
||||
size_t n);
|
||||
|
||||
struct _GCompletion
|
||||
{
|
||||
|
Reference in New Issue
Block a user