aboutsummaryrefslogtreecommitdiff
path: root/sendchar.h
diff options
context:
space:
mode:
Diffstat (limited to 'sendchar.h')
-rw-r--r--sendchar.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sendchar.h b/sendchar.h
index b31665441..7c81303c7 100644
--- a/sendchar.h
+++ b/sendchar.h
@@ -18,8 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#ifndef SENDCHAR_H 18#ifndef SENDCHAR_H
19#define SENDCHAR_H 19#define SENDCHAR_H
20 20
21#include <stdint.h>
22
23
21/* transmit a character. return 0 on success, -1 on error. */ 24/* transmit a character. return 0 on success, -1 on error. */
22int8_t sendchar(uint8_t c); 25int8_t sendchar(uint8_t c);
23 26
24#endif 27#endif
25