Files
dhdfu a2722cede7 This file isn't always there on WinCE.
git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxbase@6741 94700074-3cef-4d97-a70e-9c8c206c02f5
2007-06-19 22:01:09 +00:00

7 lines
234 B
C

/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
/* A bogus <assert.h> for WinCE which sometimes doesn't have it. */
#ifndef __ASSERT_H__
#define __ASSERT_H__
#define assert(x) if (!(x)) (*(int *)0=0);
#endif /* __ASSERT_H__ */