This is the mail archive of the gdb-patches@sourceware.cygnus.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

submission: gdb/frame.h gdb/utils.c patch for 0621 snapshot


This is to fix problems related to building snapshots 0614 and 0621.

- Jimmy Guo, guo@cup.hp.com

*** ../../../../../snaps/gdb-19990621/gdb-19990621/gdb/frame.h	Tue Jun  1 19:20:22 1999
--- gdb/frame.h	Tue Jun 22 20:58:02 1999
***************
*** 245,251 ****
  					    int nargs, struct value **args,
  					    struct type *type, int gcc_p));
  
! #ifdef __GNUC__
  /* Some native compilers, even ones that are supposed to be ANSI and for which __STDC__
     is true, complain about forward decls of enums. */
  enum lval_type;
--- 245,251 ----
  					    int nargs, struct value **args,
  					    struct type *type, int gcc_p));
  
! #ifdef __STDC__
  /* Some native compilers, even ones that are supposed to be ANSI and for which __STDC__
     is true, complain about forward decls of enums. */
  enum lval_type;
*** ../../../../../snaps/gdb-19990621/gdb-19990621/gdb/utils.c	Fri Jun 11 06:07:02 1999
--- gdb/utils.c	Tue Jun 22 21:56:58 1999
***************
*** 1941,1947 ****
  gdb_file_rewind (file)
       struct gdb_file *file;
  {
!   return file->to_rewind (file);
  }
  
  void
--- 1941,1947 ----
  gdb_file_rewind (file)
       struct gdb_file *file;
  {
!   file->to_rewind (file);
  }
  
  void
***************
*** 1949,1955 ****
       struct gdb_file *file;
       struct gdb_file *dest;
  {
!   return file->to_put (file, dest);
  }
  
  void
--- 1949,1955 ----
       struct gdb_file *file;
       struct gdb_file *dest;
  {
!   file->to_put (file, dest);
  }
  
  void


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]