mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-15 16:05:10 +01:00
d90a6f0429
*updated libntfs-wii to version 2012.1.15 *updated libext2fs to e2fsprogs 1.42 *updated libfat to R4883
25 lines
459 B
C
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 */
|