blob: 108e8e87e1f41e8331e62bbb6de5337b4ab5e603 (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
int
libexec_add_pluming(struct libexec_command *cmd, const struct libexec_pluming *pluming)
{
void *new;
if (!cmd || !pluming) {
errno = EINVAL;
return -1;
}
new = realloc(cmd->plumings, (cmd->nplumings + 1) * sizeof(*cmd->plumings));
if (!new)
return -1;
cmd->plumings = new;
memcpy(&cmd->plumings[cmd->nplumings++], pluming, sizeof(*pluming));
return 0;
}
#else
LIBEXEC_CONST__ int main(void) {return 0;} /* TODO test */
#endif
|