0a4fa9dcb2
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.
14 lines
222 B
C
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;
|
|
}
|