blob: 5d1dd8804b5071047a3e0f39875cfc6fb3b0ccb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef __TORTURE_PROTO_H__
#define __TORTURE_PROTO_H__
#undef _PRINTF_ATTRIBUTE
#define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
/* This file was automatically generated by mkproto.pl. DO NOT EDIT */
/* this file contains prototypes for functions that are private
* to this subsystem or library. These functions should not be
* used outside this particular subsystem! */
/* The following definitions come from torture.c */
/****************************************************************************
****************************************************************************/
void torture_warning(struct torture_context *context, const char *comment, ...);
/****************************************************************************
****************************************************************************/
void torture_result(struct torture_context *context,
enum torture_result result, const char *fmt, ...);
/****************************************************************************
****************************************************************************/
void torture_comment(struct torture_context *context, const char *comment, ...);
#undef _PRINTF_ATTRIBUTE
#define _PRINTF_ATTRIBUTE(a1, a2)
#endif /* __TORTURE_PROTO_H__ */
|