diff options
author | Michael Sokolov <msokolov@ivan.harhan.org> | 2001-01-27 19:54:49 +0000 |
---|---|---|
committer | Michael Sokolov <msokolov@ivan.harhan.org> | 2001-01-27 19:54:49 +0000 |
commit | b71c67aba4a8e9c34a3fe6803326b6358a112a22 (patch) | |
tree | cd8e73e701a7a371507233261cdaea4b156957e0 /gprof | |
parent | 8679174dc4b5c7438406157cedf8af7bfabc7fb4 (diff) | |
download | gdb-b71c67aba4a8e9c34a3fe6803326b6358a112a22.zip gdb-b71c67aba4a8e9c34a3fe6803326b6358a112a22.tar.gz gdb-b71c67aba4a8e9c34a3fe6803326b6358a112a22.tar.bz2 |
* basic_blocks.c: #include <unistd.h> only if it exists.
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/ChangeLog | 4 | ||||
-rw-r--r-- | gprof/basic_blocks.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog index 5850365..50eea2d 100644 --- a/gprof/ChangeLog +++ b/gprof/ChangeLog @@ -1,3 +1,7 @@ +2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG> + + * basic_blocks.c: #include <unistd.h> only if it exists. + 2000-11-06 Nick Clifton <nickc@redhat.com> * gprof.texi: Add GNU Free Documentation License. diff --git a/gprof/basic_blocks.c b/gprof/basic_blocks.c index 926743f..fa6afe7 100644 --- a/gprof/basic_blocks.c +++ b/gprof/basic_blocks.c @@ -22,7 +22,6 @@ 02111-1307, USA. */ #include <stdio.h> -#include <unistd.h> #include "basic_blocks.h" #include "corefile.h" #include "gmon_io.h" @@ -31,6 +30,9 @@ #include "libiberty.h" #include "source.h" #include "sym_ids.h" +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif /* Default option values: */ bool bb_annotate_all_lines = FALSE; |