Files
OpenSceneGraph/src/osgPlugins/pfb/stat.c
2001-10-23 23:23:51 +00:00

10 lines
142 B
C

#ifdef __linux
#include <sys/stat.h>
int stat(const char *file_name, struct stat *buf)
{
return __xstat( 3, file_name, buf );
}
#endif