diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-04-15 05:23:01 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-04-15 05:23:01 +0000 |
commit | 2c7ef07446ed0423f2f4bdf25b3b890175f12e2b (patch) | |
tree | d8b3b2299d5581817eb714b1dd1a920ee4df37d0 /gdb/bcache.c | |
parent | 628703c64bfaadffac06a1abfd0795aa62248274 (diff) | |
download | binutils-gdb-2c7ef07446ed0423f2f4bdf25b3b890175f12e2b.tar.gz |
* bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
Update copyright.
Diffstat (limited to 'gdb/bcache.c')
-rw-r--r-- | gdb/bcache.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/bcache.c b/gdb/bcache.c index 753a916d2e8..73b86e8cf53 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -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. */ |