Deleted Added
full compact
biff.c (87628) biff.c (87749)
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 87628 2001-12-10 21:13:08Z dwmalone $");
47__FBSDID("$FreeBSD: head/usr.bin/biff/biff.c 87749 2001-12-12 18:22:09Z charnier $");
48
48
49#include <sys/types.h>
50#include <sys/stat.h>
49#include <sys/stat.h>
51#include <errno.h>
52#include <unistd.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <string.h>
56#include <err.h>
50#include <err.h>
51#include <stdio.h>
52#include <unistd.h>
57
58static void usage __P((void));
59
60int
61main(argc, argv)
62 int argc;
63 char *argv[];
64{

--- 46 unchanged lines hidden ---
53
54static void usage __P((void));
55
56int
57main(argc, argv)
58 int argc;
59 char *argv[];
60{

--- 46 unchanged lines hidden ---