mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-01 08:33:24 +00:00
Move FreeBSD Id outside of copyright. Initialize variable.
This commit is contained in:
parent
905ff382d1
commit
0bf92eb85e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146751
@ -32,8 +32,6 @@
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef lint
|
||||
@ -46,6 +44,9 @@ static const char copyright[] =
|
||||
static const char sccsid[] = "@(#)tsort.c 8.3 (Berkeley) 5/4/95";
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <ctype.h>
|
||||
@ -121,6 +122,7 @@ main(int argc, char *argv[])
|
||||
int bsize, ch, nused;
|
||||
BUF bufs[2];
|
||||
|
||||
fp = NULL;
|
||||
while ((ch = getopt(argc, argv, "dlq")) != -1)
|
||||
switch (ch) {
|
||||
case 'd':
|
||||
|
Loading…
Reference in New Issue
Block a user