mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 14:24:48 +01:00
22 lines
316 B
C
22 lines
316 B
C
|
/*
|
||
|
* Copyright 2010, Oliver Tappe, zooey@hirschkaefer.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef _POSIX_LOCALE_CONV_H
|
||
|
#define _POSIX_LOCALE_CONV_H
|
||
|
|
||
|
|
||
|
#include <locale.h>
|
||
|
|
||
|
|
||
|
namespace BPrivate {
|
||
|
|
||
|
|
||
|
extern struct lconv gPosixLocaleConv;
|
||
|
|
||
|
|
||
|
} // namespace BPrivate
|
||
|
|
||
|
|
||
|
#endif // _POSIX_LOCALE_CONV_H
|