X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/5de364163f5a7597ba2f54e37cdea493fbd1e7ff..04774208b6d4131466a2b5e44af314252ab1734e:/LUFA/Drivers/Peripheral/SerialStream.c diff --git a/LUFA/Drivers/Peripheral/SerialStream.c b/LUFA/Drivers/Peripheral/SerialStream.c index fec5f7314..f8839c9b4 100644 --- a/LUFA/Drivers/Peripheral/SerialStream.c +++ b/LUFA/Drivers/Peripheral/SerialStream.c @@ -28,18 +28,19 @@ this software. */ +#define INCLUDE_FROM_SERIALSTREAM_C #include "SerialStream.h" FILE USARTStream = FDEV_SETUP_STREAM(SerialStream_TxByte, SerialStream_RxByte, _FDEV_SETUP_RW); -int SerialStream_TxByte(char DataByte, FILE *Stream) +static int SerialStream_TxByte(char DataByte, FILE *Stream) { Serial_TxByte(DataByte); return 0; } -int SerialStream_RxByte(FILE *Stream) +static int SerialStream_RxByte(FILE *Stream) { return Serial_RxByte(); }