Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Revision:
3:f151d08d335c
Parent:
2:1df0b61d3b5a
--- a/libs/Network/uip/c-fifo.h	Fri Feb 28 18:52:52 2014 -0800
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#ifndef _CFIFO_H_
-#define _CFIFO_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void *new_fifo();
-void delete_fifo(void *);
-char *fifo_pop(void *);
-void fifo_push(void *, char *);
-int fifo_size(void *);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif