Initial Contribution

This commit is contained in:
The Android Open Source Project
2008-10-21 07:00:00 -07:00
commit a27d2baa0c
1777 changed files with 163452 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <stdlib.h>
extern "C" void __cxa_pure_virtual()
{
fprintf(stderr, "Pure virtual function called. Are you calling virtual methods from a destructor?\n");
abort();
}