diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-17 01:03:56 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-17 01:03:56 +0000 |
| commit | 58d8a5e9225fc455d7f07ff371a9d99b90966ba8 (patch) | |
| tree | c7c3f6c1b27dae5e63c5b6c217f4d6e4e04a7a9e /gnu/usr.bin | |
| parent | 4ea606879a2261b70719391b39046d3a518cd03a (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin')
| -rw-r--r-- | gnu/usr.bin/cc/c++/g++.c | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/cc/cc/gcc.c | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/cc/f77/f77.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/cc/c++/g++.c b/gnu/usr.bin/cc/c++/g++.c index 28755246febe..c8e205ca2be5 100644 --- a/gnu/usr.bin/cc/c++/g++.c +++ b/gnu/usr.bin/cc/c++/g++.c @@ -378,7 +378,7 @@ main (argc, argv) programname = p; if (argc == 1) - fatal ("No input files specified.\n"); + fatal ("No input files specified"); #ifndef __MSDOS__ /* We do a little magic to find out where the main gcc executable diff --git a/gnu/usr.bin/cc/cc/gcc.c b/gnu/usr.bin/cc/cc/gcc.c index 0be7da20c196..fe452d1547bb 100644 --- a/gnu/usr.bin/cc/cc/gcc.c +++ b/gnu/usr.bin/cc/cc/gcc.c @@ -4366,7 +4366,7 @@ main (argc, argv) } if (n_infiles == 0) - fatal ("No input files"); + fatal ("No input files specified"); /* Make a place to record the compiler output file names that correspond to the input files. */ diff --git a/gnu/usr.bin/cc/f77/f77.c b/gnu/usr.bin/cc/f77/f77.c index 5920a073a9de..e9f86c26c998 100644 --- a/gnu/usr.bin/cc/f77/f77.c +++ b/gnu/usr.bin/cc/f77/f77.c @@ -377,7 +377,7 @@ main (argc, argv) programname = p; if (argc == 1) - fatal ("No input files specified.\n"); + fatal ("No input files specified"); #ifndef __MSDOS__ /* We do a little magic to find out where the main gcc executable |
