/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */ /* inegatip APL2 V1.0.0 ************************************************ * The integer equivalent of the negative function, inegative returns * * returns the argument reversed in sign. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" void inegatip(rite,ret) int *rite, *ret; { *ret = -*rite; }