Remove redundant declaration of fifo_isempty_locked().
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 6 Jun 2004 17:18:04 +0000 (17:18 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 6 Jun 2004 17:18:04 +0000 (17:18 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@25 38d2e660-2303-0410-9eaa-f027e97ec537

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__