mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
2d18900cb4
PR: 9048
17 lines
413 B
Plaintext
17 lines
413 B
Plaintext
--- as.c.orig Sat May 9 15:13:05 1998
|
|
+++ as.c Fri Dec 11 17:14:47 1998
|
|
@@ -2577,6 +2577,13 @@
|
|
|
|
ParamCount=argc-1; ParamStr=argv;
|
|
|
|
+ if (ParamCount == 0)
|
|
+ BEGIN
|
|
+ fprintf(stderr, "Usage: %s [ option(s) ] file(s) [ option(s) ] file(s)\n",
|
|
+ argv[0]);
|
|
+ exit(0);
|
|
+ END
|
|
+
|
|
if (First)
|
|
BEGIN
|
|
endian_init(); nls_init(); bpemu_init(); stdhandl_init();
|