diff --git a/stdcmd.c b/stdcmd.c index 802462b..0226b7d 100644 --- a/stdcmd.c +++ b/stdcmd.c @@ -103,7 +103,11 @@ int cmd_help(char **arg) vector_destroy(&v); printc("Type \"help \" for more information.\n"); +#ifdef WIN32 + printc("Press Ctrl+Z, Enter to quit.\n"); +#else printc("Press Ctrl+D to quit.\n"); +#endif } return 0;