7f160637338de717945207210877f81d108d958dvboxsync/** @file
7f160637338de717945207210877f81d108d958dvboxsync * IPRT / No-CRT - MSC specifics.
7f160637338de717945207210877f81d108d958dvboxsync */
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
7f160637338de717945207210877f81d108d958dvboxsync *
7f160637338de717945207210877f81d108d958dvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
7f160637338de717945207210877f81d108d958dvboxsync * available from http://www.virtualbox.org. This file is free software;
7f160637338de717945207210877f81d108d958dvboxsync * you can redistribute it and/or modify it under the terms of the GNU
7f160637338de717945207210877f81d108d958dvboxsync * General Public License (GPL) as published by the Free Software
7f160637338de717945207210877f81d108d958dvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
7f160637338de717945207210877f81d108d958dvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
7f160637338de717945207210877f81d108d958dvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
7f160637338de717945207210877f81d108d958dvboxsync *
7f160637338de717945207210877f81d108d958dvboxsync * The contents of this file may alternatively be used under the terms
7f160637338de717945207210877f81d108d958dvboxsync * of the Common Development and Distribution License Version 1.0
7f160637338de717945207210877f81d108d958dvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
7f160637338de717945207210877f81d108d958dvboxsync * VirtualBox OSE distribution, in which case the provisions of the
7f160637338de717945207210877f81d108d958dvboxsync * CDDL are applicable instead of those of the GPL.
7f160637338de717945207210877f81d108d958dvboxsync *
7f160637338de717945207210877f81d108d958dvboxsync * You may elect to license modified versions of this file under the
7f160637338de717945207210877f81d108d958dvboxsync * terms and conditions of either the GPL or the CDDL or both.
7f160637338de717945207210877f81d108d958dvboxsync */
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync#ifndef ___iprt_nocrt_compiler_msc_h
7f160637338de717945207210877f81d108d958dvboxsync#define ___iprt_nocrt_compiler_msc_h
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync/* stddef.h */
04719fee491fd398ac7f048d6e4b9b5b77687957vboxsync#if !defined(_MT) && !defined(_DLL) && _MSC_VER < 1400
04719fee491fd398ac7f048d6e4b9b5b77687957vboxsync# define errno msvcrt_errno
04719fee491fd398ac7f048d6e4b9b5b77687957vboxsync#endif
7f160637338de717945207210877f81d108d958dvboxsync#include <../include/stddef.h>
7f160637338de717945207210877f81d108d958dvboxsync#undef errno
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync#undef ssize_t
7f160637338de717945207210877f81d108d958dvboxsynctypedef intptr_t ssize_t;
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync/* stdarg.h */
7f160637338de717945207210877f81d108d958dvboxsync#include <../include/stdarg.h>
7f160637338de717945207210877f81d108d958dvboxsync
7f160637338de717945207210877f81d108d958dvboxsync#endif
7f160637338de717945207210877f81d108d958dvboxsync