Make declaration of curpcb variable extern.

This commit is contained in:
simonb 2000-03-28 01:06:04 +00:00
parent a833cd73e8
commit 338105f94b
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pcb.h,v 1.9 1999/01/16 03:12:18 nisimura Exp $ */
/* $NetBSD: pcb.h,v 1.10 2000/03/28 01:06:04 simonb Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -65,5 +65,5 @@ struct md_coredump {
};
#ifdef _KERNEL
struct pcb *curpcb; /* the current running pcb */
extern struct pcb *curpcb; /* the current running pcb */
#endif