Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
gtk
Commits
6592f00a
Commit
6592f00a
authored
Oct 07, 2005
by
Matthias Clasen
Browse files
fix includes
parent
cca93029
Changes
3
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
6592f00a
...
...
@@ -33,6 +33,9 @@
2005-10-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: Properly fix the unistd.h include
by moving it out of the profiling ifdef.
* gtk/gtkfilechooserdefault.c: Remove a redundant (and
unconditional) include of unistd.h (#318211, Kazuki Iwamoto)
...
...
ChangeLog.pre-2-10
View file @
6592f00a
...
...
@@ -33,6 +33,9 @@
2005-10-07 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkfilechooserdefault.c: Properly fix the unistd.h include
by moving it out of the profiling ifdef.
* gtk/gtkfilechooserdefault.c: Remove a redundant (and
unconditional) include of unistd.h (#318211, Kazuki Iwamoto)
...
...
gtk/gtkfilechooserdefault.c
View file @
6592f00a
...
...
@@ -78,10 +78,6 @@
/* Profiling stuff */
#undef PROFILE_FILE_CHOOSER
#ifdef PROFILE_FILE_CHOOSER
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
...
...
@@ -89,6 +85,11 @@
#include <io.h>
#endif
/* Profiling stuff */
#undef PROFILE_FILE_CHOOSER
#ifdef PROFILE_FILE_CHOOSER
#ifndef F_OK
#define F_OK 0
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment