client_term.c
author Lluís Batlle <viric@viric.name>
Thu, 20 Mar 2014 16:33:27 +0100
changeset 97 eea77d5a624c
parent 53 07500c5c53cb
permissions -rw-r--r--
Merging the savefile branch. I hope it works; I even don't remember it.

/*
    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);
}