Deleted Added
full compact
kern_acct.c (1542) kern_acct.c (1549)
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

44#include <sys/vnode.h>
45#include <sys/file.h>
46#include <sys/syslog.h>
47#include <sys/kernel.h>
48
49struct acct_args {
50 char *fname;
51};
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

44#include <sys/vnode.h>
45#include <sys/file.h>
46#include <sys/syslog.h>
47#include <sys/kernel.h>
48
49struct acct_args {
50 char *fname;
51};
52int
52acct(a1, a2, a3)
53 struct proc *a1;
54 struct acct_args *a2;
55 int *a3;
56{
57 /*
58 * Body deleted.
59 */
60 return (ENOSYS);
61}
62
53acct(a1, a2, a3)
54 struct proc *a1;
55 struct acct_args *a2;
56 int *a3;
57{
58 /*
59 * Body deleted.
60 */
61 return (ENOSYS);
62}
63
64void
63acct_process(a1)
64 struct proc *a1;
65{
66
67 /*
68 * Body deleted.
69 */
70 return;

--- 46 unchanged lines hidden ---
65acct_process(a1)
66 struct proc *a1;
67{
68
69 /*
70 * Body deleted.
71 */
72 return;

--- 46 unchanged lines hidden ---