mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
Update copyright.
This commit is contained in:
parent
628703c64b
commit
2c7ef07446
@ -1,5 +1,8 @@
|
||||
2002-04-15 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
|
||||
Update copyright.
|
||||
|
||||
* hpread.c (hpread_get_lntt): Add declaration.
|
||||
Also fix PR gdb/391.
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
/* Implement a cached obstack.
|
||||
Written by Fred Fish <fnf@cygnus.com>
|
||||
Rewritten by Jim Blandy <jimb@cygnus.com>
|
||||
Copyright 1999, 2000 Free Software Foundation, Inc.
|
||||
|
||||
Copyright 1999, 2000, 2002 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
@ -20,14 +21,14 @@
|
||||
Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
Boston, MA 02111-1307, USA. */
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "defs.h"
|
||||
#include "obstack.h"
|
||||
#include "bcache.h"
|
||||
#include "gdb_string.h" /* For memcpy declaration */
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/* The old hash function was stolen from SDBM. This is what DB 3.0 uses now,
|
||||
* and is better than the old one.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user