* proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
authorJoel Brobecker <brobecker@gnat.com>
Tue, 16 Jul 2002 17:14:38 +0000 (17:14 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Tue, 16 Jul 2002 17:14:38 +0000 (17:14 +0000)
        <sys/proc.h> when not available.

gdb/ChangeLog
gdb/proc-api.c

index e4fd18fa6b76d75f902cd07e73d302d56a705445..c72a0707298c422fc31b3bf143005f9e2ca28aab 100644 (file)
@@ -1,3 +1,8 @@
+2002-07-16  Joel Brobecker  <brobecker@gnat.com>
+
+       * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
+       <sys/proc.h> when not available.
+
 2002-07-16  Andrew Cagney  <ac131313@redhat.com>
 
        * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
index 2d3ca9ffbf2f560892196b437f00f79009e08925..fa6667f1a831ba2934c6530d4a6eb4bb8c4e9ddb 100644 (file)
@@ -36,7 +36,9 @@ Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/procfs.h>
+#ifdef HAVE_SYS_PROC_H
 #include <sys/proc.h>  /* for struct proc */
+#endif
 #ifdef HAVE_SYS_USER_H
 #include <sys/user.h>  /* for struct user */
 #endif