/* ************************************************************************ * * functions.h - * * Copyright (c) 1995 * * ETH Zuerich * Institut fuer Molekularbiologie und Biophysik * ETH-Hoenggerberg * CH-8093 Zuerich * * All Rights Reserved * * Date of last modification : 95/09/15 * Pathname of SCCS file : /export/home3/cb/garant-1.0/src/SCCS/s.functions.h * SCCS identification : 1.2 * ************************************************************************ */ /**************************************************************************/ /* functions.h */ /* functions available on sun but not on other computers */ /* */ /**************************************************************************/ #ifndef _FUNCTIONS_H_ #define _FUNCTIONS_H_ extern int min(int,int); extern int max(int,int); extern int nabs(int); extern float amin(float,float); extern float amax(float,float); extern float xabs(float); extern int xnint(float); #endif