From: dbe@wgn.net ("$Bill Luebkert")
Subject: Re: GNU-Win32 : gettimeofday
30 May 1997 10:27:25 -0700
Approved: cygnus.gnu-win32@cygnus.com
Distribution: cygnus
Message-ID: <338E3967.209E.cygnus.gnu-win32@wgn.net>
References: <338D5CA4.40E1@gintic.gov.sg>
Reply-To: dbe@wgn.net
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 3.01Gold (Win95; U)
Original-To: cclim@gintic.gov.sg
Original-CC: gnu-win32@cygnus.com
Original-Sender: owner-gnu-win32@cygnus.com

Lim Chu Cheow wrote:
> 
> Hi,
> I just installed b18, and compiled a simple program
> (given below).  Compilation went through, but the
> execution received some exception and died.  Am I
> missing something?  Thanks in advance for any advice.
> 
> ============
> #include <stdio.h>
> #include <sys/time.h>
> 
> void main(void)
> {
>   struct timeval tp;

add:
    struct timezone tz;

> 
>   fprintf(stdout,"Hello world!!\n");
>   gettimeofday(&tp);

replace:
    gettimeofday(&tp,&tz);

>   fprintf(stdout,"Current time = %lf s\n",
>           ((double)tp.tv_sec+tp.tv_usec*1.0e-6));
> }

-- 
  ,-/-  __      _  _         $Bill Luebkert
 (_/   /  )    // //       DBE Collectibles
  / ) /--<  o // //      http://www.wgn.net/~dbe/
-/-' /___/_<_</_</_    Email: dbe@wgn.net
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".
