Finally remove redundant protos.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 20 Jul 2004 23:48:17 +0000 (23:48 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Tue, 20 Jul 2004 23:48:17 +0000 (23:48 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@71 38d2e660-2303-0410-9eaa-f027e97ec537

mware/fifobuf.h

index 118bdd71cefcf28bfa3d17a66cad2c09cfd10ad9..8d7269f4b1e786f311716d959aec1a2c9be702fa 100755 (executable)
@@ -41,6 +41,9 @@
 
 /*
  * $Log$
+ * Revision 1.8  2004/07/20 23:47:39  bernie
+ * Finally remove redundant protos.
+ *
  * Revision 1.7  2004/07/20 23:46:29  bernie
  * Finally remove redundant protos.
  *
@@ -224,7 +227,6 @@ INLINE void fifo_flush(FIFOBuffer *fb)
         *
         * \sa fifo_isempty()
         */
-       INLINE bool fifo_isempty_locked(const FIFOBuffer *fb);
        INLINE bool fifo_isempty_locked(const FIFOBuffer *fb)
        {
                bool result;
@@ -244,7 +246,6 @@ INLINE void fifo_flush(FIFOBuffer *fb)
         *
         * \sa fifo_push()
         */
-       INLINE void fifo_push_locked(FIFOBuffer *fb, unsigned char c);
        INLINE void fifo_push_locked(FIFOBuffer *fb, unsigned char c)
        {
                cpuflags_t flags;