s/externs.h/extern.h/

This commit is contained in:
cgd 1994-12-19 14:14:40 +00:00
parent e46ed32748
commit 3d5d33d3c1
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* Style guide for the 4BSD KNF (Kernel Normal Form).
*
* from: @(#)style 1.12 (Berkeley) 3/18/94
* $Id: style,v 1.2 1994/03/26 03:24:54 cgd Exp $
* $Id: style,v 1.3 1994/12/19 14:14:40 cgd Exp $
*/
/*
@ -212,7 +212,7 @@ function(a1, a2, fl, a4)
* When declaring variables in functions declare them sorted by size,
* then in alphabetical order; multiple ones per line are okay. Old
* style function declarations can go on the same line. ANSI style
* function declarations should go in the include file "externs.h".
* function declarations should go in the include file "extern.h".
* If a line overflows reuse the type keyword.
*
* DO NOT initialize variables in the declarations.