blob: 55dd369edc754890547cc101de3f1f99667f0055 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
void
libexec_set_require_path(struct libexec_command *cmd, int require)
{
if (!cmd)
return;
cmd->exec_how = require ? LIBEXEC_REQUIRE_PATH : LIBEXEC_ALLOW_NAME;
cmd->exec_fd = -1;
}
#else
LIBEXEC_CONST__ int main(void) {return 0;} /* TODO test */
#endif
|