Imported Upstream version 1.17
[platform/upstream/krb5.git] / src / include / k5-cmocka.h
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /* include/k5-cmocka.h - indirect header file for cmocka test programs */
3
4 /*
5  * This header conditionally includes cmocka.h, so that "make depend" can work
6  * on cmocka test programs when cmocka isn't available.  It also includes the
7  * three system headers required for cmocka.h.
8  */
9
10 #include "autoconf.h"
11 #include <stdarg.h>
12 #include <stddef.h>
13 #include <setjmp.h>
14 #ifdef HAVE_CMOCKA
15 #include <cmocka.h>
16 #endif