os/ossrv/stdcpp/src/c_locale.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/stdcpp/src/c_locale.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,42 @@
     1.4 +/*
     1.5 + * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
     1.6 + * Copyright (c) 1999
     1.7 + * Silicon Graphics Computer Systems, Inc.
     1.8 + *
     1.9 + * Copyright (c) 1999 
    1.10 + * Boris Fomitchev
    1.11 + *
    1.12 + * This material is provided "as is", with absolutely no warranty expressed
    1.13 + * or implied. Any use is at your own risk.
    1.14 + *
    1.15 + * Permission to use or copy this software for any purpose is hereby granted 
    1.16 + * without fee, provided the above notices are retained on all copies.
    1.17 + * Permission to modify the code and to distribute modified code is granted,
    1.18 + * provided the above notices are retained, and a notice that the code was
    1.19 + * modified is included with the above copyright notice.
    1.20 + *
    1.21 + */ 
    1.22 +
    1.23 +# include "stlport_prefix.h" 
    1.24 +
    1.25 +# include <stdlib.h>
    1.26 +
    1.27 +# ifdef _STLP_REAL_LOCALE_IMPLEMENTED
    1.28 +#  include <limits.h>
    1.29 +#  include "c_locale.h"
    1.30 +#ifdef __SYMBIAN32__
    1.31 +#  include "c_locale_glibc/c_locale_glibc.c"
    1.32 +#else
    1.33 +#  if defined (WIN32) || defined (_WIN32)
    1.34 +#   include "c_locale_win32/c_locale_win32.c"
    1.35 +#  elif defined (_STLP_USE_GLIBC) && ! defined (__CYGWIN__)
    1.36 +#   if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)  
    1.37 +#    include "c_locale_glibc/c_locale_glibc2.c"
    1.38 +#   else
    1.39 +#    include "c_locale_glibc/c_locale_glibc.c"
    1.40 +#   endif
    1.41 +#  elif defined __ISCPP__
    1.42 +#   include "c_locale_is/c_locale_is.cpp"
    1.43 +#  endif
    1.44 +# endif
    1.45 +# endif