File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 18c6cc63717bde7095c2e093e5dcff9661aefe79
2
+ refs/heads/master: f8007b5535938be4f8b774177bc96dda2e9f5a71
Original file line number Diff line number Diff line change @@ -38,18 +38,6 @@ typedef int word; /* fastest type available */
38
38
#define bis (target ,mask ) ((target) |= (mask))
39
39
#define bic (target ,mask ) ((target) &= ~(mask))
40
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
41
#define TRUE 1
54
42
#define FALSE 0
55
43
#define SUCCESS 0 /* 1 on VAX */
You can’t perform that action at this time.
0 commit comments