mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Fixed the target guards around the usage messages.
This commit is contained in:
parent
b56ba8f073
commit
00ab3c2d34
@ -1,7 +1,7 @@
|
|||||||
/* Calendar-clock test program
|
/* Calendar-clock test program
|
||||||
**
|
**
|
||||||
** 2018-Sep-25, chris@groessler.org
|
** 2018-Sep-25, chris@groessler.org
|
||||||
** 2019-Dec-27, Greg King
|
** 2019-Dec-30, Greg King
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -54,8 +54,10 @@ int main(int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (argc != 2) {
|
if (argc != 2) {
|
||||||
#ifdef __CC65__
|
#if defined(__APPLE2__)
|
||||||
printf("Usage: run:rem [YY-MM-DD-HH-MM-SS]\n");
|
printf("USAGE: CALL2051 [:REM YY-MM-DD-HH-MM-SS]\n");
|
||||||
|
#elif defined(__ATMOS__) || defined(__CBM__)
|
||||||
|
printf("Usage: run [:rem YY-MM-DD-HH-MM-SS]\n");
|
||||||
#else
|
#else
|
||||||
printf("Usage: %s [YY-MM-DD-HH-MM-SS]\n", argv[0]);
|
printf("Usage: %s [YY-MM-DD-HH-MM-SS]\n", argv[0]);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user