File:  [ELWIX - Embedded LightWeight unIX -] / libaitio / inc / global.h
Revision 1.5.2.1: download - view: text, annotated - select for diffs - revision graph
Tue Apr 19 21:07:32 2011 UTC (13 years, 2 months ago) by misho
Branches: io1_7
Diff to: branchpoint 1.5: preferred, unified
added new feature
dynamic array!

    1: /*************************************************************************
    2: * (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
    3: *  by Michael Pounov <misho@openbsd-bg.org>
    4: *
    5: * $Author: misho $
    6: * $Id: global.h,v 1.5.2.1 2011/04/19 21:07:32 misho Exp $
    7: *
    8: *************************************************************************/
    9: #ifndef __GLOBAL_H
   10: #define __GLOBAL_H
   11: 
   12: 
   13: #define COMPAT_43TTY
   14: 
   15: #include "config.h"
   16: 
   17: #include <stdio.h>
   18: #include <stdlib.h>
   19: #include <stdarg.h>
   20: #include <string.h>
   21: #include <unistd.h>
   22: #include <errno.h>
   23: #include <regex.h>
   24: #include <termios.h>
   25: #include <glob.h>
   26: #include <fcntl.h>
   27: #include <ctype.h>
   28: #include <assert.h>
   29: #include <sys/types.h>
   30: #include <sys/param.h>
   31: #include <sys/event.h>
   32: #include <sys/stat.h>
   33: #include <sys/ioctl.h>
   34: #include <sys/tty.h>
   35: #include <sys/ioctl_compat.h>
   36: #include <readline/readline.h>
   37: #include <readline/history.h>
   38: 
   39: #ifdef AIO_OPS
   40: #include <aio.h>
   41: #endif
   42: 
   43: 
   44: #include "aitio.h"
   45: #include "defs.h"
   46: 
   47: 
   48: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>