factor/vm/os-linux.h

7 lines
161 B
C
Raw Normal View History

2007-09-20 18:09:08 -04:00
#define UNKNOWN_TYPE_P(file) ((file)->d_type == DT_UNKNOWN)
#define DIRECTORY_P(file) ((file)->d_type == DT_DIR)
2007-11-14 16:36:48 -05:00
#ifndef environ
extern char **environ;
#endif