Files
ResInsight/ThirdParty/Ert/devel/CMake/Tests/test_isreg.c
Jacob Støren 66f0bc03bd Undo an unintended checkin
p4#: 20323
2013-01-31 17:21:30 +01:00

9 lines
169 B
C

#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
int main(int argc, char ** argv) {
struct stat stat_buffer;
return S_ISREG(stat_buffer.st_mode);
}