1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

fix the synopsis of the command; spacing.

ok jmc@
This commit is contained in:
sobrado 2008-11-01 22:39:04 +00:00
parent d911a98076
commit f2f3414ede
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: fsplit.1,v 1.13 2007/05/31 19:20:10 jmc Exp $
.\" $OpenBSD: fsplit.1,v 1.14 2008/11/01 22:39:04 sobrado Exp $
.\" $NetBSD: fsplit.1,v 1.3 1995/09/28 05:15:06 perry Exp $
.\"
.\" Copyright (c) 1983, 1990, 1993
@ -32,7 +32,7 @@
.\"
.\" from: @(#)fsplit.1 8.1 (Berkeley) 6/6/93
.\"
.Dd $Mdocdate: May 31 2007 $
.Dd $Mdocdate: November 1 2008 $
.Dt FSPLIT 1
.Os
.Sh NAME
@ -40,8 +40,8 @@
.Nd split a multi-routine Fortran file into individual files
.Sh SYNOPSIS
.Nm fsplit
.Op Fl e Ar efile Op Ar ...
.Op Ar file
.Op Fl e Ar efile
.Ar ... Op Ar file
.Sh DESCRIPTION
.Nm
takes as input either a file or standard input containing Fortran source code.

View File

@ -1,4 +1,4 @@
/* $OpenBSD: fsplit.c,v 1.16 2007/09/02 15:19:32 deraadt Exp $ */
/* $OpenBSD: fsplit.c,v 1.17 2008/11/01 22:39:04 sobrado Exp $ */
/*
* Copyright (c) 1983, 1993
@ -40,7 +40,7 @@ static char copyright[] =
#ifndef lint
/*static char sccsid[] = "from: @(#)fsplit.c 8.1 (Berkeley) 6/6/93";*/
static char rcsid[] = "$OpenBSD: fsplit.c,v 1.16 2007/09/02 15:19:32 deraadt Exp $";
static char rcsid[] = "$OpenBSD: fsplit.c,v 1.17 2008/11/01 22:39:04 sobrado Exp $";
#endif /* not lint */
#include <ctype.h>
@ -219,7 +219,7 @@ main(int argc, char *argv[])
void
badparms(void)
{
fprintf(stderr, "usage: fsplit [-e efile] ... [file]\n");
fprintf(stderr, "usage: fsplit [-e efile] ... [file]\n");
exit(1);
}