From 38f169113ef219cdb4dcc36a94a5a53a863a91fd Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 21 Jan 2011 20:35:20 +0000 Subject: Support for HP-UX. --- osdep-hpux.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 osdep-hpux.c (limited to 'osdep-hpux.c') diff --git a/osdep-hpux.c b/osdep-hpux.c new file mode 100644 index 00000000..ecbbd380 --- /dev/null +++ b/osdep-hpux.c @@ -0,0 +1,35 @@ +/* $Id: osdep-hpux.c,v 1.1 2011-01-21 20:35:20 nicm Exp $ */ + +/* + * Copyright (c) 2009 Nicholas Marriott + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER + * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING + * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include + +#include + +#include "tmux.h" + +char * +osdep_get_name(unused int fd, unused char *tty) +{ + return (NULL); +} + +struct event_base * +osdep_event_init(void) +{ + return (event_init()); +} -- cgit v1.2.3