Commit 338100c2 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msvcrt: Declare some items static.

parent 77865765
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment