msvcrt: Declare some items static.
This commit is contained in:
parent
7786576525
commit
338100c255
|
@ -412,7 +412,7 @@ static BOOL WINAPI msvcrt_console_handler(DWORD ctrlType)
|
|||
typedef void (*float_handler)(int, int);
|
||||
|
||||
/* The exception codes are actually NTSTATUS values */
|
||||
struct
|
||||
static const struct
|
||||
{
|
||||
NTSTATUS status;
|
||||
int signal;
|
||||
|
|
|
@ -41,7 +41,7 @@ extern char *MSVCRT__pgmptr;
|
|||
void (*_aexit_rtn)(int) = MSVCRT__exit;
|
||||
|
||||
/* INTERNAL: call atexit functions */
|
||||
void __MSVCRT__call_atexit(void)
|
||||
static void __MSVCRT__call_atexit(void)
|
||||
{
|
||||
/* Note: should only be called with the exit lock held */
|
||||
TRACE("%d atext functions to call\n", MSVCRT_atexit_registered);
|
||||
|
|
Loading…
Reference in New Issue