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