git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7674 f3b2605a-c512-4ea7-a41b-209d697bcdaa

This commit is contained in:
sjplimp 2012-02-02 17:48:43 +00:00
parent c3bd519b78
commit 90e6bf8af0
1 changed files with 8 additions and 0 deletions

View File

@ -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))