#!/usr/bin/sed -f
#
# Translates a client stub generated by rpcgen into format usable by
# runix library. 
#
/^static.*struct.*timeval.*TIMEOUT.*=.*{.*25,.*0.*};/ c\
#define TIMEOUT _runix_TIMEOUT\
struct timeval TIMEOUT = {(1<<20)  , 0};
/^ \* It was generated using rpcgen/ c\
 * It was generated using rpcgen\
 * and converted by rpcxlate_clnt.

