diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-11 23:26:00 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-11 23:26:00 +0000 |
commit | 57490718aec5f11a9bcbd4380329ed9e22d614af (patch) | |
tree | 3d424ebf55451de734e3c391148261bdd1ece54c /libobjc/selector.c | |
parent | 3f5fcde69a1b3ff218e5ef067111d6931eecc246 (diff) | |
download | gcc-57490718aec5f11a9bcbd4380329ed9e22d614af.tar.gz |
2004-12-12 Alexander Malmberg <alexander@malmberg.org>
* selector.c (__objc_init_selector_tables): Add missing void to
definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92035 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/selector.c')
-rw-r--r-- | libobjc/selector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libobjc/selector.c b/libobjc/selector.c index 5ff0d8c71e2..edaef2d959d 100644 --- a/libobjc/selector.c +++ b/libobjc/selector.c @@ -38,7 +38,7 @@ static cache_ptr __objc_selector_hash = 0; /* name -> uid !T:MUTEX */ /* Number of selectors stored in each of the above tables */ unsigned int __objc_selector_max_index = 0; /* !T:MUTEX */ -void __objc_init_selector_tables () +void __objc_init_selector_tables (void) { __objc_selector_array = sarray_new (SELECTOR_HASH_SIZE, 0); __objc_selector_names = sarray_new (SELECTOR_HASH_SIZE, 0); |