You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
444 B

/* rflputc.c - rflputc */
#include <xinu.h>
/*------------------------------------------------------------------------
* rflputc - Write one character to a remote file
*------------------------------------------------------------------------
*/
devcall rflputc(
struct dentry *devptr, /* Entry in device switch table */
char ch /* Character to write */
)
{
if (rflwrite(devptr, &ch, 1) != 1) {
return SYSERR;
}
return OK;
}