/*
* Dump the environment variables.  This is a silly program that corrects  the
* 100-line  limit  in many versions of /bin/env.  I don't know how they could
* mess up something this trivial, but they did.  This version is scrunched to
* see how small a C program (59 bytes) suffices to do the job.
*/
main(c,v,e)char**v;char**e;{while(*e)printf("%s\n",*e++);exit(0);}
