12345678910111213141516171819202122232425262728293031323334353637 |
- /* -*- mode: c; tab-width: 4; indent-tabs-mode: t; -*- */
- /* SCE CONFIDENTIAL
- $PSLibId$
- *
- * Copyright (C) 2009 Sony Computer Entertainment Inc.
- * All Rights Reserved.
- *
- */
- /*
- * $Id: libgcc_aeabi.c 1287 2012-04-26 01:33:37Z fujihiro $
- * $HeadURL: svn+ssh://svn/psp2/webcore/trunk/psp2-app/libgcc_aeabi.c $
- * $LastChangedBy: fujihiro $
- * $LastChangedDate: 2012-04-26 10:33:37 +0900 (木, 26 4 2012) $
- * $LastChangedRevision: 1287 $
- *
- * the standard compiler helper function library
- *
- * Version Date Design Log
- * --------------------------------------------------------------------
- * 0.00 2009-11-19 onoda the initial version
- */
- #include <kernel.h>
- void __cxa_pure_virtual(void);
- /* Pure virtual function calls */
- void __cxa_pure_virtual(void)
- {
- __breakpoint(0x80);
- return;
- }
- /* Local variables: */
- /* tab-width: 4 */
- /* End: */
- /* vi:set tabstop=4: */
|