1// Licensed to the .NET Foundation under one or more agreements.
2// The .NET Foundation licenses this file to you under the MIT license.
3// See the LICENSE file in the project root for more information.
4//
5// util.hpp
6//
7// Miscellaneous useful functions
8//
9#ifndef _H_UTIL
10#define _H_UTIL
11
12#include <objbase.h>
13
14#if defined(_DEBUG)
15#include <crtdbg.h>
16#undef _ASSERTE // utilcode defines a custom _ASSERTE
17#endif
18
19#include "utilcode.h"
20
21#endif /* _H_UTIL */
22