swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 6079ec6680da5e40d15d981c24051e9bf5c226fc authored by Junio C Hamano on 03 December 2010, 23:18:06 UTC
Git 1.7.3.3
Tip revision: 6079ec6
cygwin.h
#include <sys/types.h>
#include <sys/stat.h>

typedef int (*stat_fn_t)(const char*, struct stat*);
extern stat_fn_t cygwin_stat_fn;
extern stat_fn_t cygwin_lstat_fn;

#define stat(path, buf) (*cygwin_stat_fn)(path, buf)
#define lstat(path, buf) (*cygwin_lstat_fn)(path, buf)
back to top