Changeset 420 for trunk/Jgraph/sin.c


Ignore:
Timestamp:
02/27/08 07:13:31 (16 years ago)
Author:
Nicholas Riley
Message:

Jgraph: my changes - ANSIfication, few minor bug fixes; works on OS X 10.5 now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Jgraph/sin.c

    r418 r420  
     1#include <stdio.h>
    12#include <math.h>
    2      main()
     3     int main(void)
    34     {
    45       double x;
    56       for (x = -10.0; x < 10.0; x += .03)
    67         printf("%f %f\n", x, sin(x));
     8       return 0;
    79     }
Note: See TracChangeset for help on using the changeset viewer.