systems.h revision 30715
1207753Smm/*
2207753Smm *			User Process PPP
3207753Smm *
4207753Smm *	    Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5207753Smm *
6207753Smm *   Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
7207753Smm *
8207753Smm * Redistribution and use in source and binary forms are permitted
9207753Smm * provided that the above copyright notice and this paragraph are
10207753Smm * duplicated in all such forms and that any documentation,
11207753Smm * advertising materials, and other materials related to such
12207753Smm * distribution and use acknowledge that the software was developed
13207753Smm * by the Internet Initiative Japan, Inc.  The name of the
14207753Smm * IIJ may not be used to endorse or promote products derived
15207753Smm * from this software without specific prior written permission.
16207753Smm * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17207753Smm * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18207753Smm * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19207753Smm *
20207753Smm * $Id: systems.h,v 1.6 1997/08/25 00:29:29 brian Exp $
21207753Smm *
22207753Smm */
23207753Smm
24207753Smmextern int OrigUid(void);
25207753Smmextern void GetUid(void);
26207753Smmextern int SelectSystem(char *, char *);
27207753Smmextern FILE *OpenSecret(char *);
28207753Smmextern void CloseSecret(FILE *);
29207753Smmextern int LoadCommand(struct cmdtab const *, int, char **);
30207753Smmextern int SaveCommand(struct cmdtab const *, int, char **);
31207753Smm