Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/include/k5-cmocka.h
34878 views
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
17
18