diff options
-rw-r--r-- | lf_fifo.c | 2 | ||||
-rw-r--r-- | lf_fifo.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -26,7 +26,7 @@ */ #include "lf_fifo.h" -#include "stdlib.h" +#include <stdlib.h> /* initialize an empty lf_fifo structure */ void lf_fifo_init( lf_fifo_t *q ) { @@ -25,11 +25,11 @@ * */ -#include "lf_cas.h" - #ifndef _LF_FIFO_H_ #define _LF_FIFO_H_ +#include "lf_cas.h" + # ifdef __cplusplus extern "C" { # endif /* __cplusplus */ |