On Oct 15 23:01, Yaakov S wrote:
> It appears that two EXEs can coexist (with the registry setting) but only
> whichever one was so named first will be run:
> [...]
> Bug? Limitation? If it hurts, don't do that?
Limitation. While we can do everything with files using native NT
calls, we can't
It appears that two EXEs can coexist (with the registry setting) but
only whichever one was so named first will be run:
$ cat > lower.c <
int main(void) { printf("I am a lower-case a\n"); return 0; }
EOF
$ cat > upper.c <
int main(void) { printf("I am an UPPER-case A\n"); return 0; }
EOF
$ gcc
2 matches
Mail list logo