stdcpp/src/c_locale.c
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 04 Oct 2010 02:56:42 +0300
changeset 68 ff3fc7722556
parent 0 e4d67989cc36
permissions -rw-r--r--
Revision: 201039 Kit: 201039

/*
 * © Portions copyright (c) 2006-2007 Nokia Corporation.  All rights reserved.
 * Copyright (c) 1999
 * Silicon Graphics Computer Systems, Inc.
 *
 * Copyright (c) 1999 
 * Boris Fomitchev
 *
 * This material is provided "as is", with absolutely no warranty expressed
 * or implied. Any use is at your own risk.
 *
 * Permission to use or copy this software for any purpose is hereby granted 
 * without fee, provided the above notices are retained on all copies.
 * Permission to modify the code and to distribute modified code is granted,
 * provided the above notices are retained, and a notice that the code was
 * modified is included with the above copyright notice.
 *
 */ 

# include "stlport_prefix.h" 

# include <stdlib.h>

# ifdef _STLP_REAL_LOCALE_IMPLEMENTED
#  include <limits.h>
#  include "c_locale.h"
#ifdef __SYMBIAN32__
#  include "c_locale_glibc/c_locale_glibc.c"
#else
#  if defined (WIN32) || defined (_WIN32)
#   include "c_locale_win32/c_locale_win32.c"
#  elif defined (_STLP_USE_GLIBC) && ! defined (__CYGWIN__)
#   if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)  
#    include "c_locale_glibc/c_locale_glibc2.c"
#   else
#    include "c_locale_glibc/c_locale_glibc.c"
#   endif
#  elif defined __ISCPP__
#   include "c_locale_is/c_locale_is.cpp"
#  endif
# endif
# endif