blob: 7092af0dfb9ca2542902d76b18e98d113c203845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef H_BUILD
#define H_BUILD
#ifdef __cplusplus
extern "C" {
#endif
int build(rpmts ts, const char * arg, BTA_t ba,
const char * rcfile);
#ifdef __cplusplus
}
#endif
#endif
|