summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ssh.h b/ssh.h
index 42a710088..ed124cece 100644
--- a/ssh.h
+++ b/ssh.h
@@ -13,7 +13,7 @@
13 * 13 *
14 */ 14 */
15 15
16/* RCSID("$Id: ssh.h,v 1.39 2000/05/09 01:03:02 damien Exp $"); */ 16/* RCSID("$Id: ssh.h,v 1.40 2000/05/17 12:34:24 damien Exp $"); */
17 17
18#ifndef SSH_H 18#ifndef SSH_H
19#define SSH_H 19#define SSH_H
@@ -486,6 +486,12 @@ void fatal_remove_cleanup(void (*proc) (void *context), void *context);
486 */ 486 */
487char *tilde_expand_filename(const char *filename, uid_t my_uid); 487char *tilde_expand_filename(const char *filename, uid_t my_uid);
488 488
489/* remove newline at end of string */
490char *chop(char *s);
491
492/* set filedescriptor to non-blocking */
493void set_nonblock(int fd);
494
489/* 495/*
490 * Performs the interactive session. This handles data transmission between 496 * Performs the interactive session. This handles data transmission between
491 * the client and the program. Note that the notion of stdin, stdout, and 497 * the client and the program. Note that the notion of stdin, stdout, and