ctdt.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* ctors and dtors arrays -- to be used by runtime system */
  2. /*   to call static constructors and destructors          */
  3. /*                                                        */
  4. /* NOTE: Use a C compiler to compile this file. If you    */
  5. /*       are using GNU C++, be sure to use compile this   */
  6. /*       file using a GNU compiler with the               */
  7. /*       -fdollars-in-identifiers flag.                   */
  8. extern void (*_ctors[])();
  9. void (*_ctors[])() =
  10.     {
  11.     0
  12.     };
  13. extern void (*_dtors[])();
  14. void (*_dtors[])() =
  15.     {
  16.     0
  17.     };