#include <unistd.h> for unlink()

Fri Jan  9 11:58:47 2004  Manish Singh  <yosh@gimp.org>

        * gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
This commit is contained in:
Manish Singh
2004-01-09 20:00:14 +00:00
committed by Manish Singh
parent 0375665909
commit 064160009a
6 changed files with 26 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org> Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example * docs/faq/gtk-faq.sgml: update GtkEntry filter code example

View File

@ -1,3 +1,7 @@
Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org> Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example * docs/faq/gtk-faq.sgml: update GtkEntry filter code example

View File

@ -1,3 +1,7 @@
Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org> Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example * docs/faq/gtk-faq.sgml: update GtkEntry filter code example

View File

@ -1,3 +1,7 @@
Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org> Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example * docs/faq/gtk-faq.sgml: update GtkEntry filter code example

View File

@ -1,3 +1,7 @@
Fri Jan 9 11:58:47 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf/gdk-pixbuf-io.c: #include <unistd.h> for unlink()
Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org> Fri Jan 9 15:28:21 GMT 2004 Tony Gale <gale@gtk.org>
* docs/faq/gtk-faq.sgml: update GtkEntry filter code example * docs/faq/gtk-faq.sgml: update GtkEntry filter code example

View File

@ -22,12 +22,17 @@
* Boston, MA 02111-1307, USA. * Boston, MA 02111-1307, USA.
*/ */
#include <config.h> #include "config.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include <glib.h> #include <glib.h>
#include <errno.h> #include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "gdk-pixbuf-private.h" #include "gdk-pixbuf-private.h"
#include "gdk-pixbuf-io.h" #include "gdk-pixbuf-io.h"