summaryrefslogtreecommitdiff
path: root/coverity/model.c
blob: 3eccc8d7ec55ba25f1591e90a82eb1926fcfdc7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Functions to help coverity do static analysis on rabbitmq-c */

void amqp_abort(const char *fmt, ...)
{
  __coverity_panic__();
}

void die_on_amqp_error(amqp_rpc_reply *r)
{
  __coverity_panic__();
}

void die_on_error(int r)
{
  __coverity_panic__();
}