1
0
Fork 0

Add a unix main so program will compiler there too. It will output an

"only for windoze" message.
This commit is contained in:
curt 1998-11-02 18:29:42 +00:00
parent 1d97b7542d
commit 535282bd23

View file

@ -107,5 +107,13 @@ int main(int argc, char **argv)
return(0);
}
#else
int main(int argc, char **argv)
{
cout << "This program is intended to work with windoze\n";
cout << "Other platforms can use mkdir\n";
}
#endif // WIN32