xref: /haiku/src/system/libroot/posix/wchar/wcsftime.cpp (revision 47a21c5c89fc9fd155a3929e5a8f6056b92a2053)
1 /*
2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 
6 #include <wchar_private.h>
7 
8 
9 extern "C" size_t
__wcsftime(wchar_t * wcs,size_t wcsSize,const wchar_t * format,const struct tm * time)10 __wcsftime(wchar_t* wcs, size_t wcsSize, const wchar_t* format,
11 	const struct tm* time)
12 {
13 #error "not implemented";
14 
15 	return cmp;
16 }
17 
18 
19 extern "C"
20 B_DEFINE_WEAK_ALIAS(__wcsftime, wcsftime);
21