pkgsrc/math/scilab/files/chk_ieee.c
dmcmahill 0a4fa9dcb2 enable this on NetBSD>1.5U on alpha since alpha FPC code is now in place.
While here, add some missing headers and squish a LP64 bug.  Passes all
self tests and all but 2 examples on a 1.5ZA alpha.
2002-03-05 21:05:52 +00:00

14 lines
222 B
C

/* $NetBSD: chk_ieee.c,v 1.1 2002/03/05 21:05:53 dmcmahill Exp $ */
#include <stdio.h>
int main(int argc, char **argv)
{
double x=0.0;
double y=1.0;
double z;
z=y/x;
return 0;
}