WiiFlow_Lite/portlibs/sources/libcustomntfs/source/realpath.h
overjoy.psm bb478d1377 *Update libcustomntfs again to 2012.1.15 and fixed mtime bug
Wiiflow should now recoginize NTFS partitions on 3tb hdd's again
2012-04-30 03:00:50 +00:00

25 lines
459 B
C

/*
* realpath.h - realpath() aware of device mapper
*/
#ifndef REALPATH_H
#define REALPATH_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_REALPATH
#define ntfs_realpath realpath
#else
extern char *ntfs_realpath(const char *path, char *resolved_path);
#endif
#ifdef linux
extern char *ntfs_realpath_canonicalize(const char *path, char *resolved_path);
#else
#define ntfs_realpath_canonicalize ntfs_realpath
#endif
#endif /* REALPATH_H */