Codebase list nbtscan-unixwiz / upstream/1.0.35 timeval_set_secs.c
upstream/1.0.35

Tree @upstream/1.0.35 (Download .tar.gz)

timeval_set_secs.c @upstream/1.0.35raw · history · blame

/*
 * $Id: //devel/tools/main/nbtscan/timeval_set_secs.c#1 $
 *
 */
#ifndef COMMONFILE
# define COMMONFILE "libcommon.h"
#endif
#include COMMONFILE
#include "penlib.h"

struct timeval * __stdcall timeval_set_secs(struct timeval *tv, int secs)
{
	assert(tv != 0);

	tv->tv_sec  = secs;
	tv->tv_usec = 0;

	return tv;
}