summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/assert.inl
blob: ab87d6ef96f78b45ecb6db2c8afe6a0d4abf34c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* $Id$ -*- C -*-

 * =============================================================================
 *
 * = LIBRARY
 *    pace
 *
 * = FILENAME
 *    pace/win32/assert.inl
 *
 * = AUTHOR
 *    Joe Hoffert
 *
 * ============================================================================= */

#include <assert.h>

PACE_INLINE
void
pace_assert (int expression)
{
  assert (expression);
  return;
}