diff options
| author | wkj <devnull@localhost> | 2004-05-16 07:54:22 +0000 |
|---|---|---|
| committer | wkj <devnull@localhost> | 2004-05-16 07:54:22 +0000 |
| commit | b855148c9b6d28fedfd083d037bcf246f1913d92 (patch) | |
| tree | 0075eb6ea37427fa48b78cb937fabc04175cead1 /src/cmd/postscript/common/request.c | |
| parent | 61f5c35c9465f0702739b41249a664d409f0482c (diff) | |
Checkpoint.
Diffstat (limited to 'src/cmd/postscript/common/request.c')
| -rw-r--r-- | src/cmd/postscript/common/request.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cmd/postscript/common/request.c b/src/cmd/postscript/common/request.c index d8d7dd13..7884b239 100644 --- a/src/cmd/postscript/common/request.c +++ b/src/cmd/postscript/common/request.c @@ -11,8 +11,12 @@ */ #include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> #include "gen.h" /* general purpose definitions */ +#include "ext.h" #include "request.h" /* a few special definitions */ #include "path.h" /* for the default request file */ @@ -22,6 +26,7 @@ char *requestfile = REQUESTFILE; /* default lookup file */ /*****************************************************************************/ +void saverequest(want) char *want; /* grab code for this stuff */ @@ -55,7 +60,9 @@ saverequest(want) } /* End of saverequest */ /*****************************************************************************/ +extern void dumprequest(); +void writerequest(page, fp_out) int page; /* write everything for this page */ @@ -80,6 +87,7 @@ writerequest(page, fp_out) /*****************************************************************************/ +void dumprequest(want, file, fp_out) char *want; /* look for this string */ |