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

VxWorks

开发平台:

C/C++

  1. /* localeLibInit.c - locale library initialization */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,07sep92,smb  written.
  7. */
  8. /*
  9. DESCRIPTION
  10. This file is used to include the locale ANSI C library routines in the 
  11. VxWorks build. The routines are only included when this file is 
  12. included by usrConfig.c.
  13. NOMANUAL
  14. */
  15. #ifndef  __INClocaleLibInitc 
  16. #define  __INClocaleLibInitc 
  17. #include "vxWorks.h"
  18. #include "locale.h"
  19. #undef localeconv /* #undef needed for the MIPS compiler */
  20. VOIDFUNCPTR localeFiles[] =
  21.     {
  22.     (VOIDFUNCPTR) localeconv,
  23.     (VOIDFUNCPTR) setlocale
  24.     };
  25. #endif /* __INClocaleLibInitc */