Plan 9 from Bell Labs’s /usr/web/sources/contrib/jas/src/dsPIC33F/lib9/errstr.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


/*
 *  errstr.c
 *  dspic
 *
 *  Copyright (c) 2010 Corpus Callosum Corporation. All rights reserved.
 *
 */

#include <u.h>
#include <libc.h>

#include "lev_board.h"

void
werrstr(char *fmt, ...)
{
	va_list arg;
	
	va_start(arg, fmt);
	vseprint(board.linebuf, board.linebuf+board.linebuflen, fmt, arg);
	va_end(arg);
	console(board.linebuf);
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.