cp-demangle.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:0k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* cp-demangle.c - C++ symbol demangler stub */
  2. /* Copyright 1998 Wind River Systems, Inc. */
  3. #include "copyright_wrs.h"
  4. /*
  5. modification history
  6. --------------------
  7. 01a,26nov26,sn   wrote
  8. */
  9. /*
  10. DESCRIPTION
  11. For now don't pull in the full g++ V3 demangler
  12. since we don't currently use this demangling style.
  13. Instead provide a stub definition (which should
  14. never be called ...)
  15. NOMANUAL
  16. */
  17. char * cplus_demangle_v3 
  18.     (
  19.     const char * mangled
  20.     )
  21.     {
  22.     return (char *) mangled;
  23.     }