modifier for function prototypes in headers.
+2012-12-23 Pierre Muller <muller@sourceware.org>
+
+ * gdbint.texinfo (Function prototypes): Require use of "extern"
+ modifier for function prototypes in headers.
+
2012-12-19 Joel Brobecker <brobecker@adacore.com>
* refcard.tex: Update copyright notice to GPL v3 or later.
function definition.
All external functions should have a declaration in a header file that
-callers include, except for @code{_initialize_*} functions, which must
+callers include, that declaration should use the @code{extern} modifier.
+The only exception concerns @code{_initialize_*} functions, which must
be external so that @file{init.c} construction works, but shouldn't be
visible to random source files.