Deleted Added
full compact
biff.c (90722) biff.c (92920)
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 30 unchanged lines hidden (view full) ---

39
40#if 0
41#ifndef lint
42static char sccsid[] = "@(#)biff.c 8.1 (Berkeley) 6/6/93";
43#endif
44#endif
45
46#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1980, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 30 unchanged lines hidden (view full) ---

39
40#if 0
41#ifndef lint
42static char sccsid[] = "@(#)biff.c 8.1 (Berkeley) 6/6/93";
43#endif
44#endif
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/usr.bin/biff/biff.c 90722 2002-02-16 09:25:49Z mike $");
47__FBSDID("$FreeBSD: head/usr.bin/biff/biff.c 92920 2002-03-22 01:22:50Z imp $");
48
49#include <sys/stat.h>
50
51#include <err.h>
52#include <stdio.h>
53#include <stdlib.h>
54#include <unistd.h>
55
48
49#include <sys/stat.h>
50
51#include <err.h>
52#include <stdio.h>
53#include <stdlib.h>
54#include <unistd.h>
55
56static void usage __P((void));
56static void usage(void);
57
58int
59main(argc, argv)
60 int argc;
61 char *argv[];
62{
63 struct stat sb;
64 int ch;

--- 44 unchanged lines hidden ---
57
58int
59main(argc, argv)
60 int argc;
61 char *argv[];
62{
63 struct stat sb;
64 int ch;

--- 44 unchanged lines hidden ---