bsd-user: style tweak: move extern to header file

extern char **environ has no standard home, so move the declaration from the .c
file to a handy .h file. Since this is a standard, old-school UNIX interface
dating from the 5th edition, it's not quite the same issue that the rule is
supposed to protect against, though.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
This commit is contained in:
Warner Losh 2021-04-23 10:41:11 -06:00
parent ac31939941
commit 4b599848a8
2 changed files with 2 additions and 1 deletions

View File

@ -47,7 +47,6 @@ unsigned long reserved_va;
static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
const char *qemu_uname_release;
extern char **environ;
enum BSDType bsd_type;
/*

View File

@ -27,6 +27,8 @@
#include "exec/user/abitypes.h"
extern char **environ;
enum BSDType {
target_freebsd,
target_netbsd,