1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +00:00

Merge pull request #1718 from polluks2/patch-2

Some clean-up
This commit is contained in:
Bob Andrews
2022-05-06 13:08:14 +02:00
committed by GitHub

View File

@@ -1,4 +1,3 @@
#include <stdlib.h>
#include <stdio.h>
@@ -7,8 +6,7 @@ unsigned int n, i, c;
void usage(char *arg)
{
printf("usage: %s [file]\n", arg);
exit(-1);
printf("usage: %s file\n", arg);
}
int main(int argc, char *argv[]) {
@@ -33,5 +31,5 @@ int main(int argc, char *argv[]) {
fputc((n >> 8) & 0xff, in);
fclose(in);
return (0);
return 0;
}