diff options
author | Kelley Cook <kelleycook@wideopenwest.com> | 2003-09-30 21:49:01 +0000 |
---|---|---|
committer | R. Kelley Cook <kcook@gcc.gnu.org> | 2003-09-30 21:49:01 +0000 |
commit | bf9d3c27744bc5f86b3fa3d75e67552178c283ad (patch) | |
tree | f696e6f16bcc7d0e38799d437bbf748a8fc9d0c0 /gcc/cp/parser.c | |
parent | 6594e599c3afe54b0ebe35a3fc1c246066a13850 (diff) | |
download | gcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.zip gcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.tar.gz gcc-bf9d3c27744bc5f86b3fa3d75e67552178c283ad.tar.bz2 |
Convert to ISO C90 prototypes.
From-SVN: r71957
Diffstat (limited to 'gcc/cp/parser.c')
-rw-r--r-- | gcc/cp/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index ec5912f..1d1799c 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -126,7 +126,7 @@ static void cp_token_cache_push_token /* Create a new cp_token_cache. */ static cp_token_cache * -cp_token_cache_new () +cp_token_cache_new (void) { return ggc_alloc_cleared (sizeof (cp_token_cache)); } |