blob: 3773dbbfdda84bf82d8224275bd6279fa1b039b0 [file] [log] [blame]
/*
* Win32 kernel functions
*
* Copyright 1995 Martin von Loewis
*/
#include <stdio.h>
#include <unistd.h>
#include "windows.h"
#include "winerror.h"
#include "kernel32.h"
#include "stddebug.h"
#include "debug.h"
/***********************************************************************
* ExitProcess (KERNEL32.100)
*/
void ExitProcess(DWORD status)
{
exit(status);
}