/*
	Copyright 06/10/99 Sun Microsystems, Inc. All Rights Reserved
*/

#ifndef _LOCALE_H

#include <sys/feature_tests.h>
#ifdef _ISO_CPP_14882_1998
  #include "locale.h"
#else
  
  #define _LOCALE_H
  #pragma ident "@(#)locale.h	1.9  06/10/99 C++5.0"   /* SVr4.0 2.34.1.2 */
  
  #include <locale_iso_SUNWCC.h>
  
  using std::lconv;
  using std::localeconv;
  using std::setlocale;

  #if (!defined(_XOPEN_SOURCE) && !defined(_POSIX_C_SOURCE)) || \
  	defined(__EXTENSIONS__)
  #include <libintl.h>
  #endif

#endif /* _ISO_CPP_14882_1998 */

#endif	/* __LOCALE_H */
