remove unused macro. PR 21150

This commit is contained in:
itojun 2003-07-29 04:45:39 +00:00
parent 4c43ef4ce1
commit 308bb7eb39
1 changed files with 0 additions and 3 deletions

View File

@ -36,9 +36,6 @@
#define ISSET(exp, bit) (((exp) & (bit)) == (bit))
#define ATOX(c) \
(isdigit(c) ? (c - '0') : (isupper(c) ? (c - 'A' + 10) : (c - 'a' + 10) ))
#define LALIGN(a) \
((a) > 0 ? ((a) &~ (sizeof(long) - 1)) : sizeof(long))