blob: 205321d23557c6b229ddff5cdd6f9f73acdf47f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef H_BUILD
#define H_BUILD
#ifdef __cplusplus
extern "C" {
#endif
int build(rpmts ts, const char * arg, BTA_t ba,
/*@null@*/ const char * rcfile)
/*@globals rpmGlobalMacroContext, rpmCLIMacroContext,
h_errno, fileSystem, internalState @*/
/*@modifies ts, ba->buildAmount, rpmGlobalMacroContext, rpmCLIMacroContext,
fileSystem, internalState @*/;
#ifdef __cplusplus
}
#endif
#endif
|