mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-03 10:20:55 +00:00
9 lines
89 B
C
9 lines
89 B
C
|
#include <stdint.h>
|
||
|
#include "sendchar.h"
|
||
|
|
||
|
|
||
|
int8_t sendchar(uint8_t c)
|
||
|
{
|
||
|
return 1;
|
||
|
}
|