From: bernie Date: Tue, 20 Jul 2004 23:48:17 +0000 (+0000) Subject: Finally remove redundant protos. X-Git-Tag: 1.0.0~1170 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=757f0b048aa787af0a305a57aa00d905c6adbd7a;p=bertos.git Finally remove redundant protos. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@71 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/mware/fifobuf.h b/mware/fifobuf.h index 118bdd71..8d7269f4 100755 --- a/mware/fifobuf.h +++ b/mware/fifobuf.h @@ -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;