blob: eb25a6080bb2eee2fe54bf75db8706759bdad6e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* rpc_output.h
*
* Declarations for output functions
*
*/
#ifndef RPCGEN_NEW_OUTPUT_H
#define RPCGEN_NEW_OUTPUT_H
void write_msg_out(void);
int nullproc(proc_list *);
void printarglist(proc_list *, char *, char *);
void pdeclaration(char *, declaration *, int, char *);
#endif /* RPCGEN_NEW_OUTPUT_H */
|