Revision 11301,
834 bytes
checked in by danw, 27 years ago
(diff) |
comment out the text after an #endif to make Irix cc happy
|
Line | |
---|
1 | /* |
---|
2 | * $Id: aklog.h,v 1.9 1998-03-25 16:43:52 danw Exp $ |
---|
3 | * |
---|
4 | * Copyright 1990,1991 by the Massachusetts Institute of Technology |
---|
5 | * For distribution and copying rights, see the file "mit-copyright.h" |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef AKLOG__H |
---|
9 | #define AKLOG__H |
---|
10 | |
---|
11 | #include <afs/param.h> |
---|
12 | #include <unistd.h> |
---|
13 | #include <stdlib.h> |
---|
14 | #include <limits.h> |
---|
15 | #include <sys/types.h> |
---|
16 | #include <krb.h> |
---|
17 | #include "linked_list.h" |
---|
18 | |
---|
19 | typedef struct { |
---|
20 | int (*readlink)(char *, char *, int); |
---|
21 | int (*isdir)(char *, unsigned char *); |
---|
22 | char *(*getcwd)(char *, size_t); |
---|
23 | int (*get_cred)(char *, char *, char *, CREDENTIALS *); |
---|
24 | int (*get_user_realm)(char *); |
---|
25 | void (*pstderr)(char *); |
---|
26 | void (*pstdout)(char *); |
---|
27 | void (*exitprog)(char); |
---|
28 | } aklog_params; |
---|
29 | |
---|
30 | void aklog(int, char *[], aklog_params *); |
---|
31 | void aklog_init_params(aklog_params *); |
---|
32 | |
---|
33 | #endif /* __AKLOG_H__ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.