Remove redundant declaration of fifo_isempty_locked().
[bertos.git] / mware / fifobuf.h
index 43ea6f1d6dc6a767de3d4618d51136ca96361338..194f10dc288678de3c9f3163f2512df8d34509e0 100755 (executable)
@@ -41,6 +41,9 @@
 
 /*
  * $Log$
+ * Revision 1.6  2004/06/06 17:18:04  bernie
+ * Remove redundant declaration of fifo_isempty_locked().
+ *
  * Revision 1.5  2004/06/06 16:50:35  bernie
  * Import fixes for race conditions from project_ks.
  *
@@ -101,7 +104,6 @@ typedef struct FIFOBuffer
 
 /* Public function prototypes */
 INLINE bool fifo_isempty(const FIFOBuffer *fb);
-INLINE bool fifo_isempty_locked(const FIFOBuffer *fb);
 INLINE bool fifo_isfull(const FIFOBuffer *fb);
 INLINE bool fifo_isfull_locked(const FIFOBuffer *fb);
 #ifdef __MWERKS__