Revision 007e2ba65902b484fc65a313e54594a009841740 authored by Jason Riedy on 25 January 2007, 21:11:40 UTC, committed by Junio C Hamano on 26 January 2007, 08:03:23 UTC
Older Solaris machines lack stdint.h but have inttypes.h.
The standard has inttypes.h including stdint.h, so at worst
this pollutes the namespace a bit.

Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent af67e91
Raw File
rsh.h
#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
back to top