summaryrefslogtreecommitdiffstats
path: root/src/appl/telnet/libtelnet/gettytab.h
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-07-02 16:42:37 +0000
committerEzra Peisach <epeisach@mit.edu>2001-07-02 16:42:37 +0000
commitb9850fadbea5e18d63a9ce80563e70242098725f (patch)
tree7720967c85f258657f039800779833f50146c559 /src/appl/telnet/libtelnet/gettytab.h
parente605dfc0ef98d3a4e9f6ae7f081c727e7d92815a (diff)
downloadkrb5-b9850fadbea5e18d63a9ce80563e70242098725f.tar.gz
krb5-b9850fadbea5e18d63a9ce80563e70242098725f.tar.xz
krb5-b9850fadbea5e18d63a9ce80563e70242098725f.zip
* krb5forw.h: File with prototype for rd_and_store_for_creds()
* kerberos5.c: Include krb5forw.h for rd_and_store_for_creds() prototype which is removed from this file. * forward.c: Include krb5forw.h for prototype. * setenv.c: Include misc-proto.h for setenv/unsetenv prototypes. * parsetos.c: Include misc-proto.h for parsetos prototype. * misc-proto.h: Add prototype for parsetos(), setenv(), unsetenv() as needed. * kerberos5.c: Declare kerberos5_forward() static and flush out prototype. * gettytab.h: Flush out prototypes for getent() and getstr(). * getent.c: Include gettytab.h for prototypes. * genget.c: Include misc.h for prototypes. * enc_des.c: Add prototype for fb64_printsub. * enc-proto.h: Add prototypes for encrypt_debug(), finddecryption(), EncryptAuthEnc(), EncryptAutoDec(), EncryptDebug(), EncryptVerbose(). * encrypt.c: Declare encrypt_list_types() and encrypt_keyid() static. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13543 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/telnet/libtelnet/gettytab.h')
-rw-r--r--src/appl/telnet/libtelnet/gettytab.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/appl/telnet/libtelnet/gettytab.h b/src/appl/telnet/libtelnet/gettytab.h
index a96dcf31eb..02e5050a8d 100644
--- a/src/appl/telnet/libtelnet/gettytab.h
+++ b/src/appl/telnet/libtelnet/gettytab.h
@@ -107,10 +107,12 @@ struct gettyflags {
#define DX gettyflags[20].value
#define RM gettyflags[21].value
-int getent();
+int getent (char *, char *);
long getnum();
int getflag();
-char *getstr();
+#ifndef SOLARIS
+char *getstr(char *, char **);
+#endif
extern struct gettyflags gettyflags[];
extern struct gettynums gettynums[];