svn commit: r292182 - stable/10/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Mon Dec 14 07:54:46 UTC 2015


Author: kib
Date: Mon Dec 14 07:54:45 2015
New Revision: 292182
URL: https://svnweb.freebsd.org/changeset/base/292182

Log:
  MFC r291948:
  Use ANSI C definition.

Modified:
  stable/10/sys/amd64/amd64/machdep.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/amd64/amd64/machdep.c
==============================================================================
--- stable/10/sys/amd64/amd64/machdep.c	Mon Dec 14 07:08:17 2015	(r292181)
+++ stable/10/sys/amd64/amd64/machdep.c	Mon Dec 14 07:54:45 2015	(r292182)
@@ -1158,12 +1158,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-stable mailing list