88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync/* $Id$ */
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync/** @file
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * VBoxNetDHCP - Hardened main().
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync */
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync/*
c7814cf6e1240a519cbec0441e033d0e2470ed00vboxsync * Copyright (C) 2009-2010 Oracle Corporation
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync *
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * available from http://www.virtualbox.org. This file is free software;
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * you can redistribute it and/or modify it under the terms of the GNU
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * General Public License (GPL) as published by the Free Software
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync */
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync#include <VBox/sup.h>
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsyncint main(int argc, char **argv, char **envp)
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync{
8fa368da0d9041f7524876a5880cc925e48cd73bvboxsync return SUPR3HardenedMain("VBoxNetDHCP", 0 /* fFlags */, argc, argv, envp);
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync}
88b7935c7a9d5156b439570abcea19c121ecf60bvboxsync