* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.

From-SVN: r24181
This commit is contained in:
Kaveh R. Ghazi 1998-12-08 06:38:10 +00:00 committed by Kaveh Ghazi
parent 0e59fc3b92
commit 6785b07787
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Tue Dec 8 09:28:36 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.
1998-12-08 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Test for availability of putc_unlocked, fputc_unlocked,

View File

@ -163,10 +163,10 @@ static int source_label_number = 1;
#define FORCE_TEXT
#endif
/* If there is a system stabs.h, use it. Otherwise, use our own. */
/* If there is a system stab.h, use it. Otherwise, use our own. */
#ifndef HAVE_STAB_H
#include "gstab.h"
#if defined (USG) || !defined (HAVE_STAB_H)
#include "gstab.h" /* If doing DBX on sysV, use our own stab.h. */
#else
#include <stab.h>