* ada-valprint.c, parse.c: Include defs.h before including ctype.h.

This commit is contained in:
Joel Brobecker 2010-01-09 04:34:35 +00:00
parent 4c49065043
commit 12c8947461
3 changed files with 7 additions and 3 deletions

View File

@ -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.

View File

@ -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"

View File

@ -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"