1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-27 21:05:15 +02:00

run-command.h: move declarations for run-command.c from cache.h

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Elijah Newren 2023-05-16 06:33:49 +00:00 committed by Junio C Hamano
parent 90cbae9ce5
commit 64c8559575
4 changed files with 5 additions and 5 deletions

View File

@ -555,7 +555,4 @@ int checkout_fast_forward(struct repository *r,
const struct object_id *to,
int overwrite_ignore);
int sane_execvp(const char *file, char *const argv[]);
#endif /* CACHE_H */

View File

@ -1,10 +1,11 @@
#include "cache.h"
#include "git-compat-util.h"
#include "abspath.h"
#include "environment.h"
#include "exec-cmd.h"
#include "gettext.h"
#include "path.h"
#include "quote.h"
#include "run-command.h"
#include "strvec.h"
#include "trace.h"
#include "trace2.h"

View File

@ -1,4 +1,4 @@
#include "cache.h"
#include "git-compat-util.h"
#include "run-command.h"
#include "environment.h"
#include "exec-cmd.h"

View File

@ -564,4 +564,6 @@ enum start_bg_result start_bg_command(struct child_process *cmd,
void *cb_data,
unsigned int timeout_sec);
int sane_execvp(const char *file, char *const argv[]);
#endif