diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-21 13:08:33 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-21 13:08:33 +0000 |
commit | 188879e763785fbed4697e24aa4005fe6384b03b (patch) | |
tree | b37184c9d20bd8707d7e11cb003fcd7410dbb228 /gcc/varray.h | |
parent | 873ae302d486f4c8375254148b576a8dec834425 (diff) | |
download | gcc-188879e763785fbed4697e24aa4005fe6384b03b.tar.gz |
* unwind-dw2.c: Fix formatting.
* unwind-dw2-fde.c: Likewise.
* unwind-dw2-fde.h: Likewise.
* unwind-pe.h: Likewise.
* varasm.c: Likewise.
* varray.h: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49045 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varray.h')
-rw-r--r-- | gcc/varray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varray.h b/gcc/varray.h index 4681406e1f4..66c4d39a3a6 100644 --- a/gcc/varray.h +++ b/gcc/varray.h @@ -1,5 +1,5 @@ /* Virtual array support. - Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc. Contributed by Cygnus Solutions. This file is part of GCC. @@ -159,7 +159,7 @@ extern varray_type varray_init PARAMS ((size_t, size_t, const char *)); /* Free up memory allocated by the virtual array, but do not free any of the elements involved. */ #define VARRAY_FREE(vp) \ - do { if (vp) { free (vp); vp = (varray_type)0; } } while (0) + do { if (vp) { free (vp); vp = (varray_type) 0; } } while (0) /* Grow/shrink the virtual array VA to N elements. */ extern varray_type varray_grow PARAMS ((varray_type, size_t)); |