/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */ /* conjugp APL2 V1.0.0 ************************************************* * Yields its double floating argument unchanged. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" void conjugp(x,ret) double *x,*ret; { *ret = *x; }