Partial Implementation of NtQuerySystemInformation and NtSetSystemInformation
[reactos.git] / reactos / ntoskrnl / ex / init.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: kernel/ex/init.c
5 * PURPOSE: executive initalization
6 * PROGRAMMER: Eric Kohl (ekohl@abo.rhein-zeitung.de)
7 * UPDATE HISTORY:
8 * Created 11/09/99
9 */
10
11 #include <ddk/ntddk.h>
12 #include <internal/ex.h>
13
14 /* FUNCTIONS ****************************************************************/
15
16 VOID
17 ExInit (VOID)
18 {
19 ExInitTimeZoneInfo ();
20
21 }
22
23 /* EOF */