diff options
author | dg <dg@FreeBSD.org> | 1994-08-04 06:15:10 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1994-08-04 06:15:10 +0000 |
commit | d746eaf05aaac7ee135b481f7f82c3d61fa4106d (patch) | |
tree | c872c0a5028dbc74446c025522a2ddae9882ae75 /sys | |
parent | 8155465ec77131e7be3fff777e5f63a17f6f2e27 (diff) | |
download | FreeBSD-src-d746eaf05aaac7ee135b481f7f82c3d61fa4106d.zip FreeBSD-src-d746eaf05aaac7ee135b481f7f82c3d61fa4106d.tar.gz |
Nuke redefinition of insque and remque.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/systm.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 5e79af3..b30a819 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)systm.h 8.4 (Berkeley) 2/23/94 - * $Id$ + * $Id: systm.h,v 1.3 1994/08/02 07:53:44 davidg Exp $ */ #include <machine/cpufunc.h> @@ -101,10 +101,6 @@ extern struct sysent { /* system call table */ extern int boothowto; /* reboot flags, from console subsystem */ -/* casts to keep lint happy */ -#define insque(q,p) _insque((caddr_t)q,(caddr_t)p) -#define remque(q) _remque((caddr_t)q) - /* * General function declarations. */ |