mirror of
https://github.com/0intro/conterm
synced 2024-11-22 05:41:28 +03:00
16 lines
178 B
C
16 lines
178 B
C
#include "u.h"
|
|
#include "lib.h"
|
|
#include "dat.h"
|
|
#include "fns.h"
|
|
#include "error.h"
|
|
|
|
extern int panicking;
|
|
void
|
|
uartputs(char *s, int n)
|
|
{
|
|
if(panicking)
|
|
write(1, s, n);
|
|
}
|
|
|
|
|