client_term.c
author viric@mandarina
Mon, 28 Apr 2008 21:42:48 +0200
changeset 92 faf9db07c037
parent 53 07500c5c53cb
permissions -rw-r--r--
Makefile with 'install'

/*
    Terminal Mixer - multi-point multi-user access to terminal applications
    Copyright (C) 2007  LluĂ­s Batlle i Rossell

    Please find the license in the provided COPYING file.
*/
#include <unistd.h>

void send_to_client_stdout(const char *buf, int len)
{
    write(1, buf, len);
}