Skip to content
Snippets Groups Projects
Commit b9f81db0 authored by rswindell's avatar rswindell
Browse files

EX_WILDCARD is defined as EX_SH on Unix (0 otherwise). This specifies shell

required for wildcard expansion (on Unix), but not elsewhere
parent 736826f5
No related branches found
No related tags found
No related merge requests found
......@@ -720,6 +720,12 @@ enum { /* readmail and delmailidx which types */
#define EX_BIN (1<<11) /* Binary mode (no Unix LF to CRLF) */
#define EX_NATIVE (1<<14) /* Native 32-bit application (XTRN_NATIVE) */
#define EX_CHKTIME (1<<16) /* Check time left (XTRN_CHKTIME) */
#if defined(__unix)
#define EX_WILDCARD EX_SH /* Expand wildcards using 'sh' on Unix */
#else
#define EX_WILDCARD 0
#endif
#define OS2_POPEN (1<<0) /* Leave COM port open */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment