Misc. fixes. bound() is now defined, make dist works properly it seems,

missed a basepath/userpath, and fixed up the menu.
This commit is contained in:
Jeff Teunissen 2000-05-21 23:01:36 +00:00
parent e1e329733c
commit d5f18435ec
3 changed files with 64 additions and 174 deletions

View file

@ -35,7 +35,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef min
# define min(a,b) ((a) < (b) ? (a) : (b))
#endif
#ifndef bound
# define bound(a,b,c) (max(a, min(b, c)))
#endif
/* This fixes warnings when compiling with -pedantic */
#if defined(__GNUC__) && !defined(inline)
# define inline __inline__