swh:1:snp:47f1e8bb459169b0feb652a9c3d9cbabd8526d4a
Raw File
Tip revision: 0ce2e396ee9fb0fa07e8381b338e49859dbf03db authored by Junio C Hamano on 17 June 2012, 21:07:15 UTC
Git 1.7.11
Tip revision: 0ce2e39
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