xref: /titanic_41/usr/src/lib/krb5/ss/data.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * Copyright (c) 2000 by Sun Microsystems, Inc.
3*7c478bd9Sstevel@tonic-gate  * All rights reserved.
4*7c478bd9Sstevel@tonic-gate  */
5*7c478bd9Sstevel@tonic-gate 
6*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
7*7c478bd9Sstevel@tonic-gate 
8*7c478bd9Sstevel@tonic-gate /*
9*7c478bd9Sstevel@tonic-gate  * Copyright 1987, 1988, 1989 Massachusetts Institute of Technology
10*7c478bd9Sstevel@tonic-gate  * (Student Information Processing Board)
11*7c478bd9Sstevel@tonic-gate  *
12*7c478bd9Sstevel@tonic-gate  * For copyright info, see copyright.h.
13*7c478bd9Sstevel@tonic-gate  */
14*7c478bd9Sstevel@tonic-gate 
15*7c478bd9Sstevel@tonic-gate #include <stdio.h>
16*7c478bd9Sstevel@tonic-gate #include "ss_internal.h"
17*7c478bd9Sstevel@tonic-gate #include "copyright.h"
18*7c478bd9Sstevel@tonic-gate 
19*7c478bd9Sstevel@tonic-gate static const char copyright[] =
20*7c478bd9Sstevel@tonic-gate     "Copyright 1987, 1988, 1989 by the Massachusetts Institute of Technology";
21*7c478bd9Sstevel@tonic-gate 
22*7c478bd9Sstevel@tonic-gate ss_data **_ss_table = (ss_data **)NULL;
23*7c478bd9Sstevel@tonic-gate char *_ss_pager_name = (char *)NULL;
24