blob: 4cba66fb09f7ec7d0956e5629bc45a35328965d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Asserts */
#include "Graph_model.h"
#if defined(__cplusplus)
extern "C" {
#endif
/* function to check assert after a step is done */
int Graph_checkForAsserts(DATA *data, threadData_t *threadData)
{
TRACE_PUSH
TRACE_POP
return 0;
}
#if defined(__cplusplus)
}
#endif
|