ftp.nice.ch/pub/next/unix/network/system/bind-4.9.3pl1.NIHS.bd.tar.gz#/bind-4.9_3-REL/compat/lib/putenv.c

This is putenv.c in view mode; [Download] [Up]

#ifndef LINT
static char rcsid[] = "$Id: putenv.c,v 8.1 1994/12/15 06:23:51 vixie Exp $";
#endif

#include "../../conf/portability.h"

/*
 *  To give a little credit to Sun, SGI,
 *  and many vendors in the SysV world.
 */

#if !defined(NEED_PUTENV)
int __bindcompat_putenv;
#else
int
putenv(str)
	char *str;
{
	register char *tmp;

	for (tmp = str; *tmp && (*tmp != '='); tmp++)
		;

	return (setenv(str, tmp, 1));
}
#endif

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.