We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c6cc6 commit f8007b5Copy full SHA for f8007b5
src/rt/isaac/standard.h
@@ -38,18 +38,6 @@ typedef int word; /* fastest type available */
38
#define bis(target,mask) ((target) |= (mask))
39
#define bic(target,mask) ((target) &= ~(mask))
40
#define bit(target,mask) ((target) & (mask))
41
-#ifndef min
42
-# define min(a,b) (((a)<(b)) ? (a) : (b))
43
-#endif /* min */
44
-#ifndef max
45
-# define max(a,b) (((a)<(b)) ? (b) : (a))
46
-#endif /* max */
47
-#ifndef align
48
-# define align(a) (((ub4)a+(sizeof(void *)-1))&(~(sizeof(void *)-1)))
49
-#endif /* align */
50
-#ifndef abs
51
-# define abs(a) (((a)>0) ? (a) : -(a))
52
-#endif
53
#define TRUE 1
54
#define FALSE 0
55
#define SUCCESS 0 /* 1 on VAX */
0 commit comments