iBoot/include/assert.h

21 lines
416 B
C

/*
* Copyright (C) 2011 Apple Inc. All rights reserved.
*
* This document is the property of Apple Inc.
* It is considered confidential and proprietary.
*
* This document may not be reproduced or transmitted in any form,
* in whole or in part, without the express written permission of
* Apple Inc.
*/
#ifndef __ASSERT_H
#define __ASSERT_H
#include <debug.h>
#define assert(x) RELEASE_ASSERT(x)
#endif