* ada-valprint.c, parse.c: Include defs.h before including ctype.h.
This commit is contained in:
parent
4c49065043
commit
12c8947461
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-01-09 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
Fix build failure of solaris-hosted cross debuggers.
|
||||
* ada-valprint.c, parse.c: Include defs.h before including ctype.h.
|
||||
|
||||
2010-01-09 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
Fix build failure on sparc-solaris.
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <ctype.h>
|
||||
#include "defs.h"
|
||||
#include <ctype.h>
|
||||
#include "gdb_string.h"
|
||||
#include "symtab.h"
|
||||
#include "gdbtypes.h"
|
||||
|
|
|
@ -31,9 +31,8 @@
|
|||
during the process of parsing; the lower levels of the tree always
|
||||
come first in the result. */
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#include "defs.h"
|
||||
#include <ctype.h>
|
||||
#include "arch-utils.h"
|
||||
#include "gdb_string.h"
|
||||
#include "symtab.h"
|
||||
|
|
Loading…
Reference in a new issue