somake/comp/wcsdup.h
Georg Sauthoff d648e92188 fix build on Solaris 10
Solaris 10 is too old for POSIX.2008, thus wcsdup() is missing
2016-08-23 21:13:46 +02:00

20 lines
303 B
C

// 2016, Georg Sauthoff <mail@georg.so>, CDDL
#ifndef COMPAT_WCSDUP_H
#define COMPAT_WCSDUP_H
#include <wchar.h>
#include "config.h"
#ifndef HAVE_WCSDUP
#if defined(__cplusplus)
extern "C" {
#endif
wchar_t * wcsdup (const wchar_t *s);
#if defined(__cplusplus)
}
#endif
#endif
#endif