Browse Source

* defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".

Fix some whitespace problems.
drow-cplus-branch
Mark Kettenis 24 years ago
parent
commit
975ac915d6
  1. 5
      gdb/ChangeLog
  2. 11
      gdb/defs.h

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2002-09-27 Mark Kettenis <kettenis@gnu.org>
* defs.h: Move inclusion of "ansidecl.h" before "gdb_locale.h".
Fix some whitespace problems.
2002-09-27 David Carlton <carlton@math.stanford.edu> 2002-09-27 David Carlton <carlton@math.stanford.edu>
* Makefile.in (cris-tdep.o): Depend on gdb_string_h. * Makefile.in (cris-tdep.o): Depend on gdb_string_h.

11
gdb/defs.h

@ -24,15 +24,16 @@
#ifndef DEFS_H #ifndef DEFS_H
#define DEFS_H #define DEFS_H
#include "config.h" /* Generated by configure */ #include "config.h" /* Generated by configure. */
#include <stdio.h> #include <stdio.h>
#include <errno.h> /* System call error return status */ #include <errno.h> /* System call error return status. */
#include <limits.h> #include <limits.h>
#ifdef HAVE_STDDEF_H #ifdef HAVE_STDDEF_H
#include <stddef.h> #include <stddef.h>
#else #else
#include <sys/types.h> /* for size_t */ #include <sys/types.h> /* For size_t. */
#endif #endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
@ -44,7 +45,7 @@
/* For ``enum target_signal''. */ /* For ``enum target_signal''. */
#include "gdb/signals.h" #include "gdb/signals.h"
/* Just in case they're not defined in stdio.h. */ /* Just in case they're not defined in stdio.h. */
#ifndef SEEK_SET #ifndef SEEK_SET
#define SEEK_SET 0 #define SEEK_SET 0
@ -58,7 +59,7 @@
#include "ansidecl.h" #include "ansidecl.h"
#include <stdarg.h> /* for va_list */ #include <stdarg.h> /* For va_list. */
#include "libiberty.h" #include "libiberty.h"

Loading…
Cancel
Save