mirror of
https://github.com/rfivet/stm32bringup.git
synced 2024-11-14 16:45:54 -05:00
14 lines
250 B
C
14 lines
250 B
C
/* puts.c -- write a string to stdout */
|
|
/* Copyright (c) 2020 Renaud Fivet */
|
|
|
|
#include <stdio.h>
|
|
#include "system.h" /* kputc(), kputs() */
|
|
|
|
int puts( const char *s) {
|
|
kputs( s) ;
|
|
kputc( '\n') ;
|
|
return 0 ;
|
|
}
|
|
|
|
/* end of puts.c */
|