svn commit: r291948 - head/sys/amd64/amd64
Konstantin Belousov
kib at FreeBSD.org
Mon Dec 7 17:24:56 UTC 2015
Author: kib
Date: Mon Dec 7 17:24:55 2015
New Revision: 291948
URL: https://svnweb.freebsd.org/changeset/base/291948
Log:
Use ANSI C definition.
MFC after: 1 week
Modified:
head/sys/amd64/amd64/machdep.c
Modified: head/sys/amd64/amd64/machdep.c
==============================================================================
--- head/sys/amd64/amd64/machdep.c Mon Dec 7 16:27:11 2015 (r291947)
+++ head/sys/amd64/amd64/machdep.c Mon Dec 7 17:24:55 2015 (r291948)
@@ -798,12 +798,7 @@ struct soft_segment_descriptor gdt_segs[
};
void
-setidt(idx, func, typ, dpl, ist)
- int idx;
- inthand_t *func;
- int typ;
- int dpl;
- int ist;
+setidt(int idx, inthand_t *func, int typ, int dpl, int ist)
{
struct gate_descriptor *ip;
More information about the svn-src-head
mailing list