forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7674 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
c3bd519b78
commit
90e6bf8af0
|
@ -31,10 +31,18 @@
|
|||
#define inline __inline__
|
||||
#endif /*IBMC*/
|
||||
|
||||
#ifndef SUCCESS
|
||||
#define SUCCESS 1
|
||||
#endif
|
||||
#ifndef FAILURE
|
||||
#define FAILURE 0
|
||||
#endif
|
||||
#ifndef TRUE
|
||||
#define TRUE 1
|
||||
#endif
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#endif
|
||||
|
||||
#define SQR(x) ((x)*(x))
|
||||
#define CUBE(x) ((x)*(x)*(x))
|
||||
|
|
Loading…
Reference in New Issue