7#if defined(_AIX) || defined(__sun__)
17#if __DCL_HAVE_THIS_FILE__
24int __stat(
const String& _path,
struct stat* _buf)
27 return stat(path, _buf);
30int __lstat(
const String& _path,
struct stat* _buf)
33 return lstat(path, _buf);
36int __chmod(
const String& _path, mode_t _mode)
39 return chmod(path, _mode);
41#if !(defined(_AIX) || defined(__sun))
45 return lchmod(path, _mode);
48int __mkdir(
const String& _path, mode_t _mode)
51 return mkdir(path, _mode);
57 return mkfifo(path, _mode);
#define STRTOMBS_ER(str, mbs)
int __mkdir(const String &_path, mode_t _mode)
int __chmod(const String &_path, mode_t _mode)
int __mkfifo(const String &_path, mode_t _mode)
__DCL_BEGIN_NAMESPACE int __stat(const String &_path, struct stat *_buf)
int __lstat(const String &_path, struct stat *_buf)
int __lchmod(const String &_path, mode_t _mode)