diff options
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/buflib.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/plugins/lib/buflib.c b/apps/plugins/lib/buflib.c index ddfc82c..5d03ca4 100644 --- a/apps/plugins/lib/buflib.c +++ b/apps/plugins/lib/buflib.c @@ -40,13 +40,6 @@ * case that use a predefined context. */ -#define ABS(x) \ -({ \ - typeof(x) xtmp_abs_ = x; \ - xtmp_abs_ = xtmp_abs_ < 0 ? -xtmp_abs_ : xtmp_abs_; \ - xtmp_abs_; \ -}) - /* Initialize buffer manager */ void buflib_init(struct buflib_context *ctx, void *buf, size_t size) |