~ubuntu-branches/debian/jessie/ace/jessie

« back to all changes in this revision

Viewing changes to ace/os_include/os_assert.h

  • Committer: Package Import Robot
  • Author(s): Pau Garcia i Quiles
  • Date: 2014-10-01 19:27:00 UTC
  • mfrom: (1.2.8)
  • Revision ID: package-import@ubuntu.com-20141001192700-67yys244im0j3nu1
Tags: 6.2.8+dfsg-1
* New upstream version
* Drop patch 25-versioned_so.diff (applied upstream)
* Drop patch 36-fix-typos.diff (applied upstream)
* Drop patch 38-fix-predictable-filename-in-tmp.diff (applied upstream)
* Drop patch largefile.diff (applied upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 *
7
7
 *  verify program assertion
8
8
 *
9
 
 *  $Id: os_assert.h 80826 2008-03-04 14:51:23Z wotte $
 
9
 *  $Id: os_assert.h 97827 2014-08-02 17:34:32Z johnnyw $
10
10
 *
11
11
 *  @author Don Hinton <dhinton@dresystems.com>
12
12
 *  @author This code was originally in various places including ace/OS.h.
28
28
# include /**/ <assert.h>
29
29
#endif /* !ACE_LACKS_ASSERT_H */
30
30
 
31
 
// Place all additions (especially function declarations) within extern "C" {}
32
 
#ifdef __cplusplus
33
 
extern "C"
34
 
{
35
 
#endif /* __cplusplus */
36
 
 
37
 
#if defined (ACE_LACKS_ASSERT_MACRO)
38
 
#  define assert(expr)
39
 
#endif
40
 
 
41
 
#ifdef __cplusplus
42
 
}
43
 
#endif /* __cplusplus */
44
 
 
45
31
#include /**/ "ace/post.h"
46
32
#endif /* ACE_OS_INCLUDE_OS_ASSERT_H */