svn commit: r323143 - stable/11/sys/i386/i386

Konstantin Belousov kib at FreeBSD.org
Sun Sep 3 09:14:08 UTC 2017


Author: kib
Date: Sun Sep  3 09:14:06 2017
New Revision: 323143
URL: https://svnweb.freebsd.org/changeset/base/323143

Log:
  MFC r322926:
  Trim excessive 'extern'.

Modified:
  stable/11/sys/i386/i386/trap.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/i386/i386/trap.c
==============================================================================
--- stable/11/sys/i386/i386/trap.c	Sun Sep  3 09:12:02 2017	(r323142)
+++ stable/11/sys/i386/i386/trap.c	Sun Sep  3 09:14:06 2017	(r323143)
@@ -107,8 +107,8 @@ PMC_SOFT_DEFINE( , , page_fault, write);
 #include <sys/dtrace_bsd.h>
 #endif
 
-extern void trap(struct trapframe *frame);
-extern void syscall(struct trapframe *frame);
+void trap(struct trapframe *frame);
+void syscall(struct trapframe *frame);
 
 static int trap_pfault(struct trapframe *, int, vm_offset_t);
 static void trap_fatal(struct trapframe *, vm_offset_t);


More information about the svn-src-all mailing list