diff options
Diffstat (limited to 'src/common/portable.c')
-rw-r--r-- | src/common/portable.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/portable.c b/src/common/portable.c new file mode 100644 index 00000000..dcc0fba1 --- /dev/null +++ b/src/common/portable.c @@ -0,0 +1,14 @@ +#include <io.h> + +int +portable_mode () +{ + if ((_access( "portable-mode", 0 )) != -1) + { + return 1; + } + else + { + return 0; + } +} |