mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
a6080a0a44
This uses "git-apply --whitespace=strip" to fix whitespace errors that have crept in to our source files over time. There are a few files that need to have trailing whitespaces (most notably, test vectors). The results still passes the test, and build result in Documentation/ area is unchanged. Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
158 B
C
7 lines
158 B
C
#ifndef RSH_H
|
|
#define RSH_H
|
|
|
|
int setup_connection(int *fd_in, int *fd_out, const char *remote_prog,
|
|
char *url, int rmt_argc, char **rmt_argv);
|
|
|
|
#endif
|