From 261f220d8bc954560c26ea78794557c86a9b09e4 Mon Sep 17 00:00:00 2001 From: ericm Date: Tue, 31 Jul 2007 15:45:34 +0000 Subject: [PATCH] branch: HEAD remove a duplicate definition. --- lustre/include/liblustre.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lustre/include/liblustre.h b/lustre/include/liblustre.h index 1f99cbc..6eb45b7 100644 --- a/lustre/include/liblustre.h +++ b/lustre/include/liblustre.h @@ -725,7 +725,6 @@ typedef struct { volatile int counter; } atomic_t; #define atomic_dec(a) do { (a)->counter--; } while (0) #define atomic_add(b,a) do {(a)->counter += b;} while (0) #define atomic_sub(b,a) do {(a)->counter -= b;} while (0) -#define ATOMIC_INIT(i) { i } #ifndef likely #define likely(exp) (exp) -- 1.8.3.1