msvcrt: Declare some items static.

This commit is contained in:
Andrew Talbot 2007-01-13 20:31:01 +00:00 committed by Alexandre Julliard
parent 7786576525
commit 338100c255
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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);