From: bernie Date: Sun, 6 Jun 2004 17:18:04 +0000 (+0000) Subject: Remove redundant declaration of fifo_isempty_locked(). X-Git-Tag: 1.0.0~1216 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=eb32d80718cc0d5bf365b3f71699bc66311bf3c5;p=bertos.git Remove redundant declaration of fifo_isempty_locked(). git-svn-id: https://src.develer.com/svnoss/bertos/trunk@25 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/fifobuf.h b/mware/fifobuf.h index 43ea6f1d..194f10dc 100755 --- a/mware/fifobuf.h +++ b/mware/fifobuf.h @@ -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__