For functions returning nothing, there is no need to document with @return, as Doxgen complains about "documented empty return type of ...". Signed-off-by: Daniel Leung <daniel.leung@intel.com>
22 lines
347 B
C
22 lines
347 B
C
/*
|
|
* Copyright (c) 2015 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* @file
|
|
* @brief Stub for C++ pure virtual functions
|
|
*/
|
|
|
|
/**
|
|
* @brief Stub for pure virtual functions
|
|
*
|
|
* This routine is needed for linking C++ code that uses pure virtual
|
|
* functions.
|
|
*/
|
|
void __cxa_pure_virtual(void)
|
|
{
|
|
while (1) {
|
|
}
|
|
}
|