diff options
author | Brian Paul <[email protected]> | 2015-03-04 19:17:57 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-03-05 06:59:43 -0700 |
commit | c3f352e8367f03cc416968d780f5dc6a6812a496 (patch) | |
tree | e7df461e53b73a34c8e2e46818959f8e623430ee /src/mapi/entry.c | |
parent | 83926b8193cfbb3ad259760567babb4eab7c5fe7 (diff) |
mapi: remove u_macros.h
Only U_STRINGIFY() is used in entry.c
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mapi/entry.c')
-rw-r--r-- | src/mapi/entry.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mapi/entry.c b/src/mapi/entry.c index f0287a052ad..27d0db40efc 100644 --- a/src/mapi/entry.c +++ b/src/mapi/entry.c @@ -27,7 +27,9 @@ #include "entry.h" #include "u_current.h" -#include "u_macros.h" + +#define _U_STRINGIFY(x) #x +#define U_STRINGIFY(x) _U_STRINGIFY(x) /* define macros for use by assembly dispatchers */ #define ENTRY_CURRENT_TABLE U_STRINGIFY(u_current_table) |