1 /*
2 * Stub out functions when building tests
3 *
4 * Authors:
5 * Kees Cook <kees@outflux.net>
6 *
7 * Copyright (C) 2007 authors
8 *
9 * Released under GNU GPL, read the file 'COPYING' for more information
10 */
12 #ifndef SEEN_TEST_STUBS_H
13 #define SEEN_TEST_STUBS_H
15 #include <glib/gtypes.h>
17 long long int prefs_get_int_attribute(gchar const *path, gchar const *attr, long long int def);
19 #endif /* !SEEN_TEST_STUBS_H */
21 /*
22 Local Variables:
23 mode:c++
24 c-file-style:"stroustrup"
25 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
26 indent-tabs-mode:nil
27 fill-column:99
28 End:
29 */
30 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :