diff options
author | bde <bde@FreeBSD.org> | 1995-02-25 18:39:04 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-02-25 18:39:04 +0000 |
commit | 0cde10efb4ac11aadedc65ee3f74596ca273cd4d (patch) | |
tree | f88960ca31ab93afec5d55904dbedc9517d34717 /sys/vm/vm_pageout.c | |
parent | daa114fa6132f09fa19ae7af3124305585c402f7 (diff) | |
download | FreeBSD-src-0cde10efb4ac11aadedc65ee3f74596ca273cd4d.zip FreeBSD-src-0cde10efb4ac11aadedc65ee3f74596ca273cd4d.tar.gz |
Don't use __P(()) in a function definition.
Diffstat (limited to 'sys/vm/vm_pageout.c')
-rw-r--r-- | sys/vm/vm_pageout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_pageout.c b/sys/vm/vm_pageout.c index 5d07183..a924459 100644 --- a/sys/vm/vm_pageout.c +++ b/sys/vm/vm_pageout.c @@ -65,7 +65,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_pageout.c,v 1.37 1995/02/22 09:15:32 davidg Exp $ + * $Id: vm_pageout.c,v 1.38 1995/02/22 10:27:24 davidg Exp $ */ /* @@ -808,7 +808,7 @@ vm_pageout() } void -vm_daemon __P((void)) +vm_daemon() { vm_object_t object; struct proc *p; |