no message

This commit is contained in:
Andrei Drexler 2005-09-18 18:01:01 +00:00
parent 4be1f276a9
commit aa2177d8b9
2 changed files with 11 additions and 3 deletions

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.7 2005/09/18 18:00:51 makro
// no message
//
// Revision 1.6 2005/09/13 02:33:17 jbravo
// Adding new callvote gametype:map
//
@ -91,6 +94,3 @@ int abs(int n);
double fabs(double x);
double acos(double x);
// JBravo: moved from bg_lib.c so all can use
#define is_digit(c) ((unsigned)to_digit(c) <= 9)
#define to_digit(c) ((c) - '0')

View file

@ -5,6 +5,9 @@
//-----------------------------------------------------------------------------
//
// $Log$
// Revision 1.16 2005/09/18 18:01:01 makro
// no message
//
// Revision 1.15 2005/02/15 16:33:39 makro
// Tons of updates (entity tree attachment system, UI vectors)
//
@ -1471,6 +1474,11 @@ typedef struct {
#define Square(x) ((x)*(x))
// Makro - moved from bg_lic.c so all can use :P
// JBravo: moved from bg_lib.c so all can use
#define is_digit(c) ((unsigned)to_digit(c) <= 9)
#define to_digit(c) ((c) - '0')
// real time
//=============================================