16 lines
291 B
C
16 lines
291 B
C
/* @(#)pf.h 1.1 92/07/30 SMI */
|
|
|
|
/*
|
|
* Copyright (c) 1985 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
struct pseudo_file {
|
|
char *pf_name; /* name of the psuedo file */
|
|
char *pf_string; /* start of body of psuedo file */
|
|
};
|
|
|
|
#ifdef KADB
|
|
extern struct pseudo_file pf[];
|
|
extern int npf;
|
|
#endif
|