am a259472c: Merge "Fix mismatch between declaration and forward declaration"

* commit 'a259472ca076ee230523e63502999be13a3f72d2':
  Fix mismatch between declaration and forward declaration
This commit is contained in:
Elliott Hughes 2013-09-19 11:44:11 -07:00 committed by Android Git Automerger
commit 8ff879a528
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ void __libc_fini(void* finit_array);
__END_DECLS
#if defined(__cplusplus)
struct KernelArgumentBlock;
class KernelArgumentBlock;
void __LIBC_HIDDEN__ __libc_init_common(KernelArgumentBlock& args);
#endif

View file

@ -113,7 +113,7 @@ extern int __set_tls(void* ptr);
__END_DECLS
#if defined(__cplusplus)
struct KernelArgumentBlock;
class KernelArgumentBlock;
extern __LIBC_HIDDEN__ void __libc_init_tls(KernelArgumentBlock& args);
#endif