mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 08:24:10 +01:00
8 lines
73 B
C
8 lines
73 B
C
#include "f2c.h"
|
|
|
|
double
|
|
d_imag (doublecomplex * z)
|
|
{
|
|
return (z->i);
|
|
}
|