15 #define TIMESTAMP_BUFFER_SIZE 26 /* including the null */
17 opr_AssertionFailed(const char *file
, int line
)
19 char tdate
[TIMESTAMP_BUFFER_SIZE
];
24 strftime(tdate
, sizeof(tdate
), "%a %b %d %H:%M:%S %Y",
25 localtime_r(&when
, &tm
));
26 fprintf(stderr
, "%s Assertion failed! file %s, line %d.\n", tdate
, file
,
33 opr_AssertFailU(const char *expr
, const char *file
, int line
)
35 fprintf(stderr
, "Fatal Rx error: assertion failed: %s, "
36 "file: %s, line: %d\n",