
/*
        Copyright 07/20/98 Sun Microsystems, Inc. All Rights Reserved
*/


#ifndef _LOCALE_H
#define __STD_LOCALE_H

#include "/usr/include/locale.h"

#ifndef __STD_CLOCALE

namespace std {

// type (struct with tag)
#pragma override_linkname
typedef ::lconv lconv;	// link name of struct lconv is now std::lconv
#pragma no_override_linkname
 
using localeconv; // function
using setlocale;  // function

} 

#endif

#endif /*__STD_LOCALE_H*/
